Skip to content

Commit

Permalink
Merge pull request #643 from ivantorgov/master
Browse files Browse the repository at this point in the history
[4.0] Changed default Redis prefix
  • Loading branch information
taylorotwell authored Aug 6, 2019
2 parents 4c8b853 + 3e8428f commit c0daa4f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion config/horizon.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use Illuminate\Support\Str;

return [

/*
Expand Down Expand Up @@ -52,7 +54,10 @@
|
*/

'prefix' => env('HORIZON_PREFIX', 'horizon:'),
'prefix' => env(
'HORIZON_PREFIX',
Str::slug(env('APP_NAME', 'laravel'), '_').'_horizon:'
),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit c0daa4f

Please sign in to comment.