When flushing inactive clients, don't let a choke in one prevent us

from flushing the rest.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3005 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2004-05-10 17:45:27 +00:00
parent 11fba91964
commit 60f9159f25
@@ -1,5 +1,5 @@
//
// $Id: ClientManager.java,v 1.36 2004/03/06 11:29:19 mdb Exp $
// $Id: ClientManager.java,v 1.37 2004/05/10 17:45:27 ray Exp $
package com.threerings.presents.server;
@@ -409,10 +409,16 @@ public class ClientManager
if (victims != null) {
for (int ii = 0; ii < victims.size(); ii++) {
PresentsClient client = (PresentsClient)victims.get(ii);
Log.info("Client expired, ending session [client=" + client +
", dtime=" + (now-client.getNetworkStamp()) + "ms].");
client.endSession();
try {
PresentsClient client = (PresentsClient)victims.get(ii);
Log.info("Client expired, ending session " +
"[client=" + client +
", dtime=" + (now-client.getNetworkStamp()) + "ms].");
client.endSession();
} catch (Exception e) {
Log.warning("Choke while flushing clients.");
Log.logStackTrace(e);
}
}
}
}