From 56c4b1de451f394aafde0b84f947da55549b14b1 Mon Sep 17 00:00:00 2001 From: James King Date: Tue, 18 Feb 2025 12:24:33 +0000 Subject: [PATCH] Don't set CACHE_PREFIX to empty string by default 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 93561a48d29..35db1ddf0e0 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