You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Connection to an IP which can't be reached, emit a retry event after a very very long time during every retrying... What I meas the total_retry_time not include connecting time, and retry event will be emited after another connection timeout, if the connection timeout not setted, default is quite a long time.
// connect to an IP not existsredis.createClient(6379,'999.999.999.999',options);
I solved this with a connect_timeout param which is abandoned by official...this will solve the first time connecting timeout problems...(max connection timeout set to 2S before emiting retry event )
The text was updated successfully, but these errors were encountered:
total_retry_time
not include connecting time, and retry event will be emited after another connection timeout, if theconnection timeout
not setted, default is quite a long time.I solved this with a
connect_timeout
param which is abandoned by official...this will solve the first time connecting timeout problems...(max connection timeout set to 2S before emiting retry event )The text was updated successfully, but these errors were encountered: