From ecf6de4992d70dd37c21676be6b8ba4743151e63 Mon Sep 17 00:00:00 2001 From: James King Date: Tue, 18 Feb 2025 15:12:59 +0000 Subject: [PATCH] Don't set CACHE_PREFIX to empty string by default (#6542) Setting this to an empty string by default overrides the default behaviour of using APP_NAME in the cache config file, this leads to unintended consequences if this has been blindly copied into the app's main .env file without setting a value --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 93561a48..35db1ddf 100644 --- a/.env.example +++ b/.env.example @@ -38,7 +38,7 @@ FILESYSTEM_DISK=local QUEUE_CONNECTION=database CACHE_STORE=database -CACHE_PREFIX= +# CACHE_PREFIX= MEMCACHED_HOST=127.0.0.1