Skip to content
This repository has been archived by the owner on Jan 2, 2018. It is now read-only.

Commit

Permalink
Do not propagate DEBUG LOADAOF
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Jan 7, 2012
1 parent 8b102e0 commit 8939ff1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/debug.c
Expand Up @@ -235,6 +235,7 @@ void debugCommand(redisClient *c) {
addReply(c,shared.err);
return;
}
server.dirty = 0; /* Prevent AOF / replication */
redisLog(REDIS_WARNING,"Append Only File loaded by DEBUG LOADAOF");
addReply(c,shared.ok);
} else if (!strcasecmp(c->argv[1]->ptr,"object") && c->argc == 3) {
Expand Down

0 comments on commit 8939ff1

Please sign in to comment.