Commit 822efe2a authored by Amir Mohammad Saied's avatar Amir Mohammad Saied
Browse files

Redis command getting executed is PING, PONG is actually the expected answer

parent 7684d556
...@@ -17,7 +17,7 @@ int main(void) { ...@@ -17,7 +17,7 @@ int main(void) {
/* PING server */ /* PING server */
reply = redisCommand(c,"PING"); reply = redisCommand(c,"PING");
printf("PONG: %s\n", reply->str); printf("PING: %s\n", reply->str);
freeReplyObject(reply); freeReplyObject(reply);
/* Set a key */ /* Set a key */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment