Commit d595f33c authored by Vincent Pelletier's avatar Vincent Pelletier

Always access dispatcher on self instead of app (as all other uses are done through self).


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@270 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 75499dbc
......@@ -196,7 +196,7 @@ class ClientEventHandler(EventHandler):
p.askPrimaryMaster(msg_id)
conn.addPacket(p)
conn.expectMessage(msg_id)
app.dispatcher.register(conn, msg_id, app.getQueue())
self.dispatcher.register(conn, msg_id, app.getQueue())
finally:
conn.unlock()
elif node_type == STORAGE_NODE_TYPE:
......
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