From 4525f36cacc15cb82e8df4ef2e61f24423fcc639 Mon Sep 17 00:00:00 2001 From: Ben Sampson Date: Tue, 30 Oct 2018 12:36:35 +0000 Subject: [PATCH] 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. --- config/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/queue.php b/config/queue.php index 38326eff..c1430b49 100644 --- a/config/queue.php +++ b/config/queue.php @@ -60,7 +60,7 @@ return [ 'redis' => [ 'driver' => 'redis', 'connection' => 'default', - 'queue' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 90, 'block_for' => null, ],