Don't let our max queue reporting drift a few ms every minute.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3472 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2005-04-12 19:04:39 +00:00
parent 09822e45c5
commit b80eec3959
@@ -243,8 +243,11 @@ public class PresentsDObjectMgr
if (_nextQueueReport != 0L) {
Log.info("Max dobj queue size " + _maxQueueSize);
_maxQueueSize = queueSize;
_nextQueueReport += 60 * 1000L;
} else {
_nextQueueReport = startMillis + 60 * 1000L;
}
_nextQueueReport = startMillis + 60 * 1000L;
}
}