forked from mirror/pixelfed
Update jobs timeout
This commit is contained in:
parent
1fa74f141b
commit
a3b67a88dc
|
@ -38,6 +38,8 @@ class RemoteAvatarFetch implements ShouldQueue
|
||||||
* @var int
|
* @var int
|
||||||
*/
|
*/
|
||||||
public $tries = 1;
|
public $tries = 1;
|
||||||
|
public $timeout = 300;
|
||||||
|
public $maxExceptions = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new job instance.
|
* Create a new job instance.
|
||||||
|
|
|
@ -25,8 +25,8 @@ class DeleteWorker implements ShouldQueue
|
||||||
protected $headers;
|
protected $headers;
|
||||||
protected $payload;
|
protected $payload;
|
||||||
|
|
||||||
public $timeout = 120;
|
public $timeout = 300;
|
||||||
public $tries = 3;
|
public $tries = 1;
|
||||||
public $maxExceptions = 1;
|
public $maxExceptions = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue