Shift configuration

This commit is contained in:
Laravel Shift
2016-10-19 07:53:10 +00:00
parent e7b419c4fc
commit 9e72f81205
2 changed files with 17 additions and 3 deletions

View File

@@ -47,14 +47,14 @@ return [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
'retry_after' => 60,
],
'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
'ttr' => 60,
'retry_after' => 60,
],
'sqs' => [
@@ -70,7 +70,7 @@ return [
'driver' => 'redis',
'connection' => 'default',
'queue' => 'default',
'expire' => 86400,
'retry_after' => 86400,
],
],