Commit 08849b8b authored by Vincent Pelletier's avatar Vincent Pelletier

Fix a forgotten call to Connection.notify providing it a msg_id. Use Connection.answer.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1054 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent caa3ffe8
......@@ -71,7 +71,7 @@ class StorageServiceHandler(BaseServiceHandler):
if node.isClient():
if c is t.getConnection():
p = protocol.notifyTransactionFinished(tid)
c.notify(p, t.getMessageId())
c.answer(p, t.getMessageId())
else:
p = protocol.invalidateObjects(t.getOIDList(), tid)
c.notify(p)
......
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