mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 16:21:03 +00:00
fix time() instead of mstime() in expireIfNeeded
This commit is contained in:
parent
a323870450
commit
024f213b12
2
src/db.c
2
src/db.c
@ -518,7 +518,7 @@ int expireIfNeeded(redisDb *db, robj *key) {
|
|||||||
* that is, 0 if we think the key should be still valid, 1 if
|
* that is, 0 if we think the key should be still valid, 1 if
|
||||||
* we think the key is expired at this time. */
|
* we think the key is expired at this time. */
|
||||||
if (server.masterhost != NULL) {
|
if (server.masterhost != NULL) {
|
||||||
return time(NULL) > when;
|
return mstime() > when;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return when this key has not expired */
|
/* Return when this key has not expired */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user