use env value for redis queue name
It's common to have a redis queue name when having multiple queues/applications on the same instance. Default value is the same.
This commit is contained in:
@@ -60,7 +60,7 @@ return [
|
|||||||
'redis' => [
|
'redis' => [
|
||||||
'driver' => 'redis',
|
'driver' => 'redis',
|
||||||
'connection' => 'default',
|
'connection' => 'default',
|
||||||
'queue' => 'default',
|
'queue' => env('REDIS_QUEUE', 'default'),
|
||||||
'retry_after' => 90,
|
'retry_after' => 90,
|
||||||
'block_for' => null,
|
'block_for' => null,
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user