From 733438fe23f67559d4da922c749664ed5db5dfc9 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 14 Jan 2019 17:01:49 +0100 Subject: [PATCH] RESP3: Populate new fields for the AOF fake client. However we should remove this fake client ad-hoc creation, and replace it with the proper call to createClient(-1), and then adjust the fake client as we like. --- src/aof.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/aof.c b/src/aof.c index 9723fc33..7d76c6f3 100644 --- a/src/aof.c +++ b/src/aof.c @@ -645,6 +645,8 @@ struct client *createFakeClient(void) { c->obuf_soft_limit_reached_time = 0; c->watched_keys = listCreate(); c->peerid = NULL; + c->resp = 2; + c->user = NULL; listSetFreeMethod(c->reply,freeClientReplyValue); listSetDupMethod(c->reply,dupClientReplyValue); initClientMultiState(c);