summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/db.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/db.c b/src/db.c
index 2b8acf855..619751791 100644
--- a/src/db.c
+++ b/src/db.c
@@ -912,7 +912,8 @@ void expireGenericCommand(redisClient *c, long long basetime, int unit) {
}
void expireCommand(redisClient *c) {
- expireGenericCommand(c,mstime(),UNIT_SECONDS);
+ long long now = server.hz >= 10 ? server.mstime: mstime();
+ expireGenericCommand(c,now,UNIT_SECONDS);
}
void expireatCommand(redisClient *c) {