Commit d00397e5 authored by Yoshinori Okuji's avatar Yoshinori Okuji

The method name was wrong; handleNotifyInformationLocked instead of handleNotifyTransactionLocked.

git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@123 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 3922d02e
......@@ -66,6 +66,6 @@ class MasterEventHandler(EventHandler):
logging.info('ignoring Finish Transaction')
pass
def handleNotifyTransactionLocked(self, conn, packet, tid):
logging.info('ignoring Notify Transaction Locked')
def handleNotifyInformationLocked(self, conn, packet, tid):
logging.info('ignoring Notify Information Locked')
pass
......@@ -428,7 +428,7 @@ class ServiceEventHandler(MasterEventHandler):
t = FinishingTransaction(conn, packet, oid_list, uuid_set)
app.finishing_transaction_dict[tid] = t
def handleNotifyTransactionLocked(self, conn, packet, tid):
def handleNotifyInformationLocked(self, conn, packet, tid):
uuid = conn.getUUID()
if uuid is None:
self.handleUnexpectedPacket(conn, packet)
......
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