From d771ee6c8aaf66f8e3bf549310d0c86f15332106 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 20 Apr 2017 15:31:39 -0500 Subject: [PATCH] add queue prefix value this PR goes along with https://github.com/laravel/framework/pull/18860 --- config/queue.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/config/queue.php b/config/queue.php index 4d83ebd0..145ac8a8 100644 --- a/config/queue.php +++ b/config/queue.php @@ -17,6 +17,20 @@ 'default' => env('QUEUE_DRIVER', 'sync'), + /* + |-------------------------------------------------------------------------- + | Queue Prefix + |-------------------------------------------------------------------------- + | + | If you are running multiple sites on a single server, you may experience + | crosstalk among sites if they use the same name for queue tubes. This + | optional value defines a prefix that will automatically be applied + | to queue tubes as a way to prevent this crosstalk. + | + */ + + 'prefix' => env('QUEUE_PREFIX', ''), + /* |-------------------------------------------------------------------------- | Queue Connections