Skip to content

Commit

Permalink
0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
chenby@nextop.cn committed Sep 25, 2018
1 parent 9f0b198 commit 7f21780
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void onEvent(Replicator replicator, Event event) {
long expire = 0L;
final Long expiry = dkv.getExpiredValue();
final long dbnum = dkv.getDb() == null ? 0 : dkv.getDb().getDbNumber();
if (dkv.getExpiredType() != null && expiry != null && expire - currentTimeMillis() < 0) {
if (dkv.getExpiredType() != null && expiry != null && expiry - currentTimeMillis() < 0) {
expire = 1L;
}

Expand Down

0 comments on commit 7f21780

Please sign in to comment.