1
0
Fork 0

Update jobs timeout

This commit is contained in:
Daniel Supernault 2022-12-13 00:00:25 -07:00
parent 1fa74f141b
commit a3b67a88dc
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 4 additions and 2 deletions

View File

@ -38,6 +38,8 @@ class RemoteAvatarFetch implements ShouldQueue
* @var int
*/
public $tries = 1;
public $timeout = 300;
public $maxExceptions = 1;
/**
* Create a new job instance.

View File

@ -25,8 +25,8 @@ class DeleteWorker implements ShouldQueue
protected $headers;
protected $payload;
public $timeout = 120;
public $tries = 3;
public $timeout = 300;
public $tries = 1;
public $maxExceptions = 1;
/**