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
{{ message }}
This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
this issue caused by netty. When RedisClient.connect() call the Method DefaultChannelFuture.await(),netty will call the deadLockCheck() when the attr useDeadLockChecker is true. then because this process is in a undone future,the checker return false and cause the connection faild.
I tried changing the future.await() to add a ChannelFutureListener to fix this.But it seems will take some new problem, such as a unfunctional connection will be returned.Is there some good idea to fit this?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
this issue caused by netty. When RedisClient.connect() call the Method DefaultChannelFuture.await(),netty will call the deadLockCheck() when the attr useDeadLockChecker is true. then because this process is in a undone future,the checker return false and cause the connection faild.
I tried changing the future.await() to add a ChannelFutureListener to fix this.But it seems will take some new problem, such as a unfunctional connection will be returned.Is there some good idea to fit this?
The text was updated successfully, but these errors were encountered: