From 6296ead89751c360b0a61d7deccbc812ffe70393 Mon Sep 17 00:00:00 2001 From: canoine <8430237+canoine@users.noreply.github.com> Date: Fri, 9 Sep 2022 14:21:16 +0200 Subject: [PATCH] Redis username needed for both databases Redis username needed for both 'default' and 'cache' databases --- config/database.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/database.php b/config/database.php index c2ed4fbd78..da13fb0564 100644 --- a/config/database.php +++ b/config/database.php @@ -150,6 +150,7 @@ return [ 'path' => envNonEmpty('REDIS_PATH'), 'host' => envNonEmpty('REDIS_HOST', '127.0.0.1'), 'port' => envNonEmpty('REDIS_PORT', 6379), + 'username' => env('REDIS_USERNAME'), 'password' => env('REDIS_PASSWORD', null), 'database' => env('REDIS_DB', '0'), ],