Merge pull request #4986 from DivineOmega/patch-1
[5.8] Add underscores to cache and redis database prefixes
This commit is contained in:
commit
005ec1301e
|
@ -97,6 +97,6 @@
|
|||
|
|
||||
*/
|
||||
|
||||
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
|
||||
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
|
||||
|
||||
];
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'predis'),
|
||||
'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database',
|
||||
'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database_',
|
||||
],
|
||||
|
||||
'default' => [
|
||||
|
|
Loading…
Reference in New Issue