mirror of
https://github.com/fluencelabs/redis
synced 2025-03-17 16:10:50 +00:00
append only file loading fixed
This commit is contained in:
parent
f80dff6212
commit
9387d17dfe
3
redis.c
3
redis.c
@ -5346,6 +5346,9 @@ static struct redisClient *createFakeClient(void) {
|
||||
c->argc = 0;
|
||||
c->argv = NULL;
|
||||
c->flags = 0;
|
||||
/* We set the fake client as a slave waiting for the synchronization
|
||||
* so that Redis will not try to send replies to this client. */
|
||||
c->replstate = REDIS_REPL_WAIT_BGSAVE_START;
|
||||
c->reply = listCreate();
|
||||
listSetFreeMethod(c->reply,decrRefCount);
|
||||
listSetDupMethod(c->reply,dupClientReplyValue);
|
||||
|
Loading…
x
Reference in New Issue
Block a user