diff --git a/ghost/adapter-cache-redis/lib/AdapterCacheRedis.js b/ghost/adapter-cache-redis/lib/AdapterCacheRedis.js index 2c7be0242f..4bf590d076 100644 --- a/ghost/adapter-cache-redis/lib/AdapterCacheRedis.js +++ b/ghost/adapter-cache-redis/lib/AdapterCacheRedis.js @@ -43,6 +43,9 @@ class AdapterCacheRedis extends BaseCacheAdapter { port: config.port, username: config.username, password: config.password, + retryStrategy: () => { + return (config.storeConfig.retryConnectSeconds || 10) * 1000; + }, ...config.storeConfig, clusterConfig: config.clusterConfig };