| 949 | } |
| 950 | |
| 951 | static void cliPrintContextError(void) { |
| 952 | if (context == NULL) return; |
| 953 | fprintf(stderr,"Error: %s\n",context->errstr); |
| 954 | } |
| 955 | |
| 956 | static int isInvalidateReply(redisReply *reply) { |
| 957 | return reply->type == REDIS_REPLY_PUSH && reply->elements == 2 && |
no outgoing calls
no test coverage detected