Commit 4a89c573 authored by Vincent Pelletier's avatar Vincent Pelletier

storage.handler.client: Answer with consistent class.

parent 31ad26ac
...@@ -193,7 +193,7 @@ class ClientOperationHandler(EventHandler): ...@@ -193,7 +193,7 @@ class ClientOperationHandler(EventHandler):
dump(oid), dump(serial), dump(ttid), dump(oid), dump(serial), dump(ttid),
dump(self.app.tm.getLockingTID(oid))) dump(self.app.tm.getLockingTID(oid)))
# send an answer as the client side is waiting for it # send an answer as the client side is waiting for it
conn.answer(Packets.AnswerStoreObject(0, oid, serial)) conn.answer(Packets.AnswerCheckCurrentSerial(0, oid, serial))
return return
try: try:
self.app.tm.checkCurrentSerial(ttid, serial, oid) self.app.tm.checkCurrentSerial(ttid, serial, oid)
......
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