Update InboxPipeline, increase timeout from 60s to 300s

This commit is contained in:
Daniel Supernault 2022-12-09 05:08:20 -07:00
parent e08869cbfc
commit d1b888b5a6
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
3 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@ class InboxValidator implements ShouldQueue
protected $headers;
protected $payload;
public $timeout = 60;
public $timeout = 300;
public $tries = 1;
public $maxExceptions = 1;

View file

@ -25,7 +25,7 @@ class InboxWorker implements ShouldQueue
protected $headers;
protected $payload;
public $timeout = 60;
public $timeout = 300;
public $tries = 1;
public $maxExceptions = 1;

View file

@ -17,7 +17,7 @@ class SharedInboxWorker implements ShouldQueue
protected $profile;
protected $payload;
public $timeout = 60;
public $timeout = 300;
public $tries = 1;
/**