Skip to content

Commit

Permalink
fix: don't change all cache keys due to laravel 11 upgrade (#2660)
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland authored Aug 31, 2024
1 parent 75fba17 commit d40aab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,6 @@
|
*/

'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache_'),
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache_') . ':',

];

0 comments on commit d40aab6

Please sign in to comment.