Commit 06b23421 authored by Yoshinori Okuji's avatar Yoshinori Okuji

Fix storage node to use Ask Transaction Information.

git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@61 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent fe78f4b3
......@@ -221,7 +221,7 @@ class BootstrapEventHandler(StorageEventHandler):
def handleAskUnfinishedTransactions(self, conn, packet):
pass
def handleAskOIDsByTID(self, conn, packet, tid):
def handleAskTransactionInformation(self, conn, packet, tid):
pass
def handleAskObjectPresent(self, conn, packet, oid, tid):
......
......@@ -163,7 +163,7 @@ class StorageEventHandler(EventHandler):
def handleAskUnfinishedTransactions(self, conn, packet):
raise NotImplementedError('this method must be overridden')
def handleAskOIDsByTID(self, conn, packet, tid):
def handleAskTransactionInformation(self, conn, packet, tid):
raise NotImplementedError('this method must be overridden')
def handleAskObjectPresent(self, conn, packet, oid, 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