Correct omission

This commit is contained in:
Tux 2015-04-17 16:35:04 -04:00
parent 7c76b245d4
commit 195857a531
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public final class RedisBungee extends Plugin {
if (pool != null) {
Jedis tmpRsc = pool.getResource();
try {
tmpRsc.hset("heartbeats", serverId, String.valueOf(System.currentTimeMillis()));
tmpRsc.hset("heartbeats", serverId, String.valueOf(System.nanoTime()));
} finally {
pool.returnResource(tmpRsc);
}