This commit is contained in:
2021-05-18 21:20:08 +09:00
parent 13f3e8e8f9
commit cd96aa8377
2 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ return [
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DB', 0),
'database' => env('REDIS_DATABASE', 0),
//`prefix` => `d:`,
],

View File

@@ -38,7 +38,7 @@ return [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'retry_after' => 30,
'retry_after' => 60,
],
'beanstalkd' => [
@@ -60,7 +60,7 @@ return [
'redis' => [
'driver' => 'redis',
'connection' => 'default',
'queue' => 'default',
'queue' => env('REDIS_QUEUE', 'default'),
'retry_after' => 90,
'block_for' => null,
'prefix' => env('QUEUE_PREFIX','w4rpservices_queue'),