From 9f8fca44d44b2e7bae76c3e129bac678ff7e2d63 Mon Sep 17 00:00:00 2001 From: Arjun Santhosh <139119101+Hujgo@users.noreply.github.com> Date: Sat, 15 Jun 2024 00:31:01 +0530 Subject: [PATCH] Update redis.config.php add dbindex for redis as comment. referenced from a6f2a3c commit Signed-off-by: Arjun Santhosh <139119101+Hujgo@users.noreply.github.com> --- .config/redis.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/redis.config.php b/.config/redis.config.php index 346457c58..2beff0aec 100644 --- a/.config/redis.config.php +++ b/.config/redis.config.php @@ -6,6 +6,7 @@ 'redis' => array( 'host' => getenv('REDIS_HOST'), 'password' => getenv('REDIS_HOST_PASSWORD_FILE') && file_exists(getenv('REDIS_HOST_PASSWORD_FILE')) ? trim(file_get_contents(getenv('REDIS_HOST_PASSWORD_FILE'))) : (string) getenv('REDIS_HOST_PASSWORD'), + 'dbindex' => (int) getenv('REDIS_DB_INDEX'), ), );