Tentative fix.

When we log off, anything that tries to unsubscribe in response to that
will find that the object cache is already cleared, resulting in these
info-level warnings cluttering up the log.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6773 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2012-01-27 01:18:09 +00:00
parent 8592564733
commit 75a1840fb8
@@ -250,7 +250,11 @@ public class ClientDObjectMgr
_flusher.cancel(); _flusher.cancel();
_flushes.clear(); _flushes.clear();
_dead.clear(); _dead.clear();
_ocache.clear(); _client.getRunQueue().postRunnable(new Runnable() {
public void run () {
_ocache.clear();
}
});
} }
protected <T extends DObject> void queueAction (int oid, Subscriber<T> target, boolean subscribe) protected <T extends DObject> void queueAction (int oid, Subscriber<T> target, boolean subscribe)