Commit 3da3b651 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Add log messages when an unexpected message is handled in the bootstrap state.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@467 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 7c8471b8
......@@ -253,41 +253,53 @@ class BootstrapEventHandler(StorageEventHandler):
conn.close()
def handleAskLastIDs(self, conn, packet):
logging.info('got ask last ids')
logging.warning('/!\ handleAskLastIDs')
pass
def handleAskPartitionTable(self, conn, packet, offset_list):
logging.warning('/!\ handleAskPartitionTable')
pass
def handleSendPartitionTable(self, conn, packet, ptid, row_list):
logging.warning('/!\ handleSendPartitionTable')
pass
def handleNotifyPartitionChanges(self, conn, packet, ptid, cell_list):
logging.warning('/!\ handleNotifyPartitionChanges')
pass
def handleStartOperation(self, conn, packet):
logging.warning('/!\ handleStartOperation')
pass
def handleStopOperation(self, conn, packet):
logging.warning('/!\ handleStopOperation')
pass
def handleAskUnfinishedTransactions(self, conn, packet):
logging.warning('/!\ handleAskUnfinishedTransactions')
pass
def handleAskTransactionInformation(self, conn, packet, tid):
logging.warning('/!\ handleAskTransactionInformation')
pass
def handleAskObjectPresent(self, conn, packet, oid, tid):
logging.warning('/!\ handleAskObjectPresent')
pass
def handleDeleteTransaction(self, conn, packet, tid):
logging.warning('/!\ handleDeleteTransaction')
pass
def handleCommitTransaction(self, conn, packet, tid):
logging.warning('/!\ handleCommitTransaction')
pass
def handleLockInformation(self, conn, packet, tid):
logging.warning('/!\ handleLockInformation')
pass
def handleUnlockInformation(self, conn, packet, tid):
logging.warning('/!\ handleUnlockInformation')
pass
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