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
if dbid is provided, lazyConnection will loseConnection and stop reconnecting on redis server restart etc.
Connection should not be closed here:
if self.dbid is not None:
try:
response = yield self.select(self.dbid)
if isinstance(response, ResponseError):
raise response
except Exception as e:
self.factory.continueTrying = False
self.transport.loseConnection()
msg = "Redis error: could not set dbid=%s: %s" % \
(self.dbid, str(e))
self.factory.connectionError(msg)
if self.factory.isLazy:
log.msg(msg)
defer.returnValue(None)
The text was updated successfully, but these errors were encountered:
if dbid is provided, lazyConnection will loseConnection and stop reconnecting on redis server restart etc.
Connection should not be closed here:
The text was updated successfully, but these errors were encountered: