2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-11-22 20:28:00 +00:00

Correct omission

This commit is contained in:
Tux 2015-04-17 16:35:04 -04:00
parent 7c76b245d4
commit 195857a531

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);
}