From 3fc4bf07cc04dc12a91e9da682162b4d062136bf Mon Sep 17 00:00:00 2001 From: xuchengxuan Date: Wed, 14 Jun 2017 16:42:21 +0800 Subject: [PATCH] Fixed comments of slowlog duration --- src/slowlog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slowlog.h b/src/slowlog.h index 81df0b054..6b8740e86 100644 --- a/src/slowlog.h +++ b/src/slowlog.h @@ -35,7 +35,7 @@ typedef struct slowlogEntry { robj **argv; int argc; long long id; /* Unique entry identifier. */ - long long duration; /* Time spent by the query, in nanoseconds. */ + long long duration; /* Time spent by the query, in microseconds. */ time_t time; /* Unix time at which the query was executed. */ } slowlogEntry;