From: Pieter Noordhuis Date: Tue, 14 Dec 2010 16:39:34 +0000 (+0100) Subject: Zero-pad timestamps in MONITOR output X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/2b2eca1f5643260ae7ca6bec70c263ff0db5a8e3?ds=inline Zero-pad timestamps in MONITOR output Original report and fix: http://code.google.com/p/redis/issues/detail?id=404 --- diff --git a/src/replication.c b/src/replication.c index a49aa2d8..9f8d9274 100644 --- a/src/replication.c +++ b/src/replication.c @@ -88,7 +88,7 @@ void replicationFeedMonitors(list *monitors, int dictid, robj **argv, int argc) struct timeval tv; gettimeofday(&tv,NULL); - cmdrepr = sdscatprintf(cmdrepr,"%ld.%ld ",(long)tv.tv_sec,(long)tv.tv_usec); + cmdrepr = sdscatprintf(cmdrepr,"%ld.%06ld ",(long)tv.tv_sec,(long)tv.tv_usec); if (dictid != 0) cmdrepr = sdscatprintf(cmdrepr,"(db %d) ", dictid); for (j = 0; j < argc; j++) {