Commit b5114824 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Primary master handle protocol error messages from other nodes without crash.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@886 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 8fce97a2
......@@ -53,6 +53,9 @@ class MasterHandler(EventHandler):
node = self.app.nm.getNodeByUUID(conn.getUUID())
self._dropIt(conn, node, protocol.BROKEN_STATE)
def handleProtocolError(self, conn, packet, message):
logging.error('Protocol error %s %s' % (message, conn.getAddress()))
def handleNotifyNodeInformation(self, conn, packet, node_list):
logging.error('ignoring Notify Node Information in %s', self.__class__.__name__)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment