Commit 9e863896 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Fix inconsistency in handleAnswerStoreObject method definitions, parameter list

defined in API (handler.py) was wrong.


git-svn-id: https://svn.erp5.org/repos/neo/trunk@1299 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 0e377745
......@@ -262,7 +262,7 @@ class EventHandler(object):
compression, checksum, data, tid):
raise UnexpectedPacketError
def handleAnswerStoreObject(self, conn, packet, status, oid):
def handleAnswerStoreObject(self, conn, packet, conflicting, oid, serial):
raise UnexpectedPacketError
def handleAbortTransaction(self, conn, packet, tid):
......
......@@ -149,7 +149,7 @@ class PacketLogger(object):
compression, checksum, data, tid):
pass
def answerStoreObject(self, conn, packet, status, oid):
def answerStoreObject(self, conn, packet, conflicting, oid, serial):
pass
def abortTransaction(self, conn, packet, tid):
......
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