From e99954e4d4e79afdd05cc27ec076af3ec93bed59 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 e3781c67..655fb25f 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. */ sds cname; /* Client name. */ sds peerid; /* Client network address. */