We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ping response was switched from bulk string to simple string #345. However in subscribe mode, jedis seems to expect a bulk string.
vanilla redis-server also switches back and forth depending on weather the client is subscribed or not.
15:22 $ telnet 127.0.0.1 6379 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. auth foobared +OK ping +PONG ping +PONG subscribe foo *3 $9 subscribe $3 foo :1 ping *2 $4 pong $0
The text was updated successfully, but these errors were encountered:
#768 Ping in subscribe mode should return a multi-bulk string
6e06848
Summary: Ping in subscribe mode should return a multi-bulk string Test Plan: redisserver-test Also, Importing some jedis tests in https://phabricator.dev.yugabyte.com/D6030 Reviewers: hector, rahuldesirazu, sergei, mihnea Reviewed By: mihnea Subscribers: yql Differential Revision: https://phabricator.dev.yugabyte.com/D6021
amitanandaiyer
No branches or pull requests
Ping response was switched from bulk string to simple string #345. However in subscribe mode, jedis seems to expect a bulk string.
vanilla redis-server also switches back and forth depending on weather the client is subscribed or not.
15:22 $ telnet 127.0.0.1 6379
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
auth foobared
+OK
ping
+PONG
ping
+PONG
subscribe foo
*3
$9
subscribe
$3
foo
:1
ping
*2
$4
pong
$0
The text was updated successfully, but these errors were encountered: