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
The next method in RedisReply attempts to operate on a TCP connection without acquiring it first, so it will fail when used outside a RedisConnection. I can think of two possible ways of fixing it:
Make RedisReply private and never return it from any of the client methods, or...
Reserve the connection for as long as a corresponding RedisReply exists.
The first one makes more sense to me.
I can take this on myself as soon as I have the time, but I have no idea when that'll actually be.
The text was updated successfully, but these errors were encountered:
The
next
method inRedisReply
attempts to operate on a TCP connection without acquiring it first, so it will fail when used outside aRedisConnection
. I can think of two possible ways of fixing it:RedisReply
private and never return it from any of the client methods, or...RedisReply
exists.The first one makes more sense to me.
I can take this on myself as soon as I have the time, but I have no idea when that'll actually be.
The text was updated successfully, but these errors were encountered: