Clean unused var compiler warning in module test. (#9289)

(cherry picked from commit 8bf433dc86)
This commit is contained in:
Yossi Gottlieb
2022-04-27 16:31:52 +03:00
committed by Oran Agra
parent aa0606db08
commit ba2feb3004
+1 -1
View File
@@ -253,7 +253,7 @@ int Release_RedisCommand(RedisModuleCtx *ctx, RedisModuleString **argv, int argc
RedisModuleString *replystr = argv[1];
RedisModule_RetainString(ctx, replystr);
int err = RedisModule_UnblockClient(blocked_client, replystr);
RedisModule_UnblockClient(blocked_client, replystr);
blocked_client = NULL;
RedisModule_ReplyWithSimpleString(ctx, "OK");