From 8a5440134bb3ddf84284176db1f23d655f70a74f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 22 Apr 2026 08:37:37 +0000 Subject: [PATCH] nextcloud: adjust redis timeouts Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/1f9b7c14-6c7a-4008-b690-5167db1f90e6 Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com> Signed-off-by: Simon L. --- Containers/nextcloud/config/redis.config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containers/nextcloud/config/redis.config.php b/Containers/nextcloud/config/redis.config.php index 94bedcf5..4a7d4a53 100644 --- a/Containers/nextcloud/config/redis.config.php +++ b/Containers/nextcloud/config/redis.config.php @@ -7,8 +7,8 @@ if (getenv('REDIS_MODE') !== 'rediscluster') { if (getenv('REDIS_HOST')) { $CONFIG['redis']['host'] = (string) getenv('REDIS_HOST'); - $CONFIG['redis']['timeout'] = 1.5; - $CONFIG['redis']['read_timeout'] = 1.5; + $CONFIG['redis']['timeout'] = 3.0; + $CONFIG['redis']['read_timeout'] = 10.0; } if (getenv('REDIS_HOST_PASSWORD')) {