From 159b0e79cd5b26bc7cd4699113951599a5b5d6d0 Mon Sep 17 00:00:00 2001 From: Jordan Hall Date: Mon, 8 Apr 2019 08:50:48 +0100 Subject: [PATCH 1/2] Additional underscore on redis database prefix --- config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.php b/config/database.php index 1f96d0dd..9b30dc1f 100644 --- a/config/database.php +++ b/config/database.php @@ -119,7 +119,7 @@ return [ 'options' => [ 'cluster' => env('REDIS_CLUSTER', 'predis'), - 'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database', + 'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database_', ], 'default' => [ From 3cbc5ac640022cb4e3fcad7fc50e2086d32af6ae Mon Sep 17 00:00:00 2001 From: Jordan Hall Date: Mon, 8 Apr 2019 08:52:06 +0100 Subject: [PATCH 2/2] Additional underscore on cache prefix --- config/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 30f0cae2..414ca996 100644 --- a/config/cache.php +++ b/config/cache.php @@ -97,6 +97,6 @@ return [ | */ - 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), ];