Skip to content

Commit

Permalink
Wait 30 min before retrying a queued job (was 1.5 min)
Browse files Browse the repository at this point in the history
We have some long running jobs (e.g. Delphi laser point detection)
so we must wait a little longer before assuming that a job failed.
  • Loading branch information
mzur committed Jun 6, 2017
1 parent 24fd11b commit 723a40b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
'driver' => 'database',
'table' => 'jobs',
'queue' => 'high,default',
'retry_after' => 90,
'retry_after' => 1800,
],

'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
'retry_after' => 90,
'queue' => 'high,default',
'retry_after' => 1800,
],

'sqs' => [
Expand All @@ -60,8 +60,8 @@
'redis' => [
'driver' => 'redis',
'connection' => 'default',
'queue' => 'default',
'retry_after' => 90,
'queue' => 'high,default',
'retry_after' => 1800,
],

],
Expand Down

0 comments on commit 723a40b

Please sign in to comment.