Handle having a null caller.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5368 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -743,7 +743,8 @@ public abstract class PeerManager
|
|||||||
_injector.injectMembers(action);
|
_injector.injectMembers(action);
|
||||||
action.invoke();
|
action.invoke();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warning("Failed to execute node action", "from", caller.who(),
|
log.warning("Failed to execute node action",
|
||||||
|
"from", (caller == null) ? "self" : caller.who(),
|
||||||
"action", action, "serializedSize", serializedAction.length, e);
|
"action", action, "serializedSize", serializedAction.length, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user