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 someone tries to create a connection to the wrong host (for example) function asyncio_redis.Connection.create() hangs forever and the user gets no error message.
From my side, it happens in _reconnect() method [0] because of the while True: loop - it has no exit condition on connection error and it retries connection attempts forever
If someone tries to create a connection to the wrong host (for example) function
asyncio_redis.Connection.create()
hangs forever and the user gets no error message.From my side, it happens in
_reconnect()
method [0] because of thewhile True:
loop - it has no exit condition on connection error and it retries connection attempts forever[0] - https://github.com/jonathanslenders/asyncio-redis/blob/master/asyncio_redis/connection.py#L93
The text was updated successfully, but these errors were encountered: