summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2015-11-09 18:06:41 +0100
committerSalvatore Sanfilippo <antirez@gmail.com>2015-11-09 18:06:41 +0100
commitc950facf43cb6bf6f8696da39927b513e0be5aa1 (patch)
tree273a17bd405f0378668f51930ebebd56f829b1c8
parent87a12a608512603a56851507b75bb43e55abcca2 (diff)
parent35afefc7cbdb903fad41ce24908dfc849b6c2f5d (diff)
downloadredis-c950facf43cb6bf6f8696da39927b513e0be5aa1.tar.gz
Merge pull request #2848 from badboy/removed-printf
Remove printf
-rw-r--r--src/scripting.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/scripting.c b/src/scripting.c
index 54f0172d1..d571cdb38 100644
--- a/src/scripting.c
+++ b/src/scripting.c
@@ -1302,7 +1302,6 @@ void evalGenericCommand(client *c, int evalsha) {
rewriteClientCommandArgument(c,0,
resetRefCount(createStringObject("EVAL",4)));
rewriteClientCommandArgument(c,1,script);
- printf("forceCommandPropagation\n");
forceCommandPropagation(c,PROPAGATE_REPL|PROPAGATE_AOF);
}
}