node-redis Does retry_strategy have a default value?
Redis connection was valid even when redis-server was stopped and restarted without the retry_strategy option. const conn = redis.createClient({ host: 'redisUrl', port: 'redisPort', ... socket_keepalive : true }); redisClient.on('connect', () => { console.log(`connect`); }).on('error', () => { console.log(`error`); }); Why?