Commit 3922d02e authored by Aurel's avatar Aurel

go on fixing parameter order

fix call to notifyInformationLocked


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@122 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 487ddb2e
......@@ -261,7 +261,7 @@ class OperationEventHandler(StorageEventHandler):
except KeyError:
pass
conn.addPacket(Packet().notifyInformationLocked(conn.getId(), tid))
conn.addPacket(Packet().notifyInformationLocked(packet.getId(), tid))
else:
self.handleUnexpectedPacket(conn, packet)
......@@ -367,8 +367,8 @@ class OperationEventHandler(StorageEventHandler):
if locking_tid < tid:
# Delay the response.
app.queueEvent(self.handleAskStoreObject, conn, packet,
oid, serial, compression, data,
checksum, tid)
oid, serial, compression, checksum,
data, tid)
else:
# If a newer transaction already locks this object,
# do not try to resolve a conflict, so return immediately.
......
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