Skip to content

Commit

Permalink
add queue prefix value
Browse files Browse the repository at this point in the history
this PR goes along with laravel/framework#18860
  • Loading branch information
browner12 committed Apr 20, 2017
1 parent 0916548 commit 5942b21
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5942b21

Please sign in to comment.