From: antirez Date: Thu, 1 Jul 2010 18:22:46 +0000 (+0200) Subject: Fixed MONITOR output for consistency: now integer encoded values are also formatted... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/d3b958c3fc32be66dac929ede482ef5fe8f5b462?ds=sidebyside Fixed MONITOR output for consistency: now integer encoded values are also formatted like this: "3932" --- diff --git a/src/replication.c b/src/replication.c index ecb04ce1..5387db91 100644 --- a/src/replication.c +++ b/src/replication.c @@ -91,7 +91,7 @@ void replicationFeedMonitors(list *monitors, int dictid, robj **argv, int argc) for (j = 0; j < argc; j++) { if (argv[j]->encoding == REDIS_ENCODING_INT) { - cmdrepr = sdscatprintf(cmdrepr, "%ld", (long)argv[j]->ptr); + cmdrepr = sdscatprintf(cmdrepr, "\"%ld\"", (long)argv[j]->ptr); } else { cmdrepr = sdscatrepr(cmdrepr,(char*)argv[j]->ptr, sdslen(argv[j]->ptr));