Commit d771ee6c authored by Andrew's avatar Andrew

add queue prefix value

this PR goes along with https://github.com/laravel/framework/pull/18860
parent b699ffab
...@@ -17,6 +17,20 @@ return [ ...@@ -17,6 +17,20 @@ return [
'default' => env('QUEUE_DRIVER', 'sync'), '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 | Queue Connections
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment