CG: XACK should return zero when nothing is processed.

This commit is contained in:
antirez 2018-01-26 11:18:34 +01:00
parent 388c69fe4e
commit 5ad29325fe

View File

@ -1412,7 +1412,7 @@ void xackCommand(client *c) {
/* No key or group? Nothing to ack. */ /* No key or group? Nothing to ack. */
if (o == NULL || group == NULL) { if (o == NULL || group == NULL) {
addReply(c,shared.cone); addReply(c,shared.czero);
return; return;
} }