Commit 20513516 authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #3822 from halaei/expire-90

expire jobs after 90 seconds
parents d6ca0a6d d3aff652
......@@ -38,14 +38,14 @@ return [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
'expire' => 90,
],
'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
'ttr' => 60,
'ttr' => 90,
],
'sqs' => [
......@@ -61,7 +61,7 @@ return [
'driver' => 'redis',
'connection' => 'default',
'queue' => 'default',
'expire' => 60,
'expire' => 90,
],
],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment