1
0
Fork 0

Merge pull request #2548 from pixelfed/staging

Update InboxPipeline, increase timeout length
This commit is contained in:
daniel 2021-01-07 14:01:37 -07:00 committed by GitHub
commit fa63bfa3b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class InboxValidator implements ShouldQueue
protected $headers; protected $headers;
protected $payload; protected $payload;
public $timeout = 5; public $timeout = 60;
public $tries = 1; public $tries = 1;
/** /**

View File

@ -17,6 +17,9 @@ class SharedInboxWorker implements ShouldQueue
protected $profile; protected $profile;
protected $payload; protected $payload;
public $timeout = 60;
public $tries = 1;
/** /**
* Create a new job instance. * Create a new job instance.
* *