This also happens as a matter of course. Clients send invocation requests

after things have already been processed and cleaned up on the server.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3047 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-07-03 07:24:39 +00:00
parent e57580626e
commit 124abb66f7
@@ -1,5 +1,5 @@
//
// $Id: InvocationManager.java,v 1.21 2004/07/03 07:19:46 mdb Exp $
// $Id: InvocationManager.java,v 1.22 2004/07/03 07:24:39 mdb Exp $
package com.threerings.presents.server;
@@ -193,11 +193,11 @@ public class InvocationManager
InvocationDispatcher disp = (InvocationDispatcher)
_dispatchers.get(invCode);
if (disp == null) {
Log.warning("Received invocation request for which we have " +
"no registered dispatcher [code=" + invCode +
", methId=" + methodId +
", args=" + StringUtil.toString(args) + ", marsh=" +
_recentRegServices.get(new Integer(invCode)) + "].");
Log.info("Received invocation request but dispatcher " +
"registration was already cleared [code=" + invCode +
", methId=" + methodId +
", args=" + StringUtil.toString(args) + ", marsh=" +
_recentRegServices.get(new Integer(invCode)) + "].");
return;
}