Skip to content

Commit 1d857a9

Browse files
authored
Merge pull request redis#4056 from season89/unstable
Fixed comments of slowlog duration
2 parents 0a03187 + 3fc4bf0 commit 1d857a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/slowlog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ typedef struct slowlogEntry {
3535
robj **argv;
3636
int argc;
3737
long long id; /* Unique entry identifier. */
38-
long long duration; /* Time spent by the query, in nanoseconds. */
38+
long long duration; /* Time spent by the query, in microseconds. */
3939
time_t time; /* Unix time at which the query was executed. */
4040
sds cname; /* Client name. */
4141
sds peerid; /* Client network address. */

0 commit comments

Comments
 (0)