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): ...@@ -253,41 +253,53 @@ class BootstrapEventHandler(StorageEventHandler):
conn.close() conn.close()
def handleAskLastIDs(self, conn, packet): def handleAskLastIDs(self, conn, packet):
logging.info('got ask last ids') logging.warning('/!\ handleAskLastIDs')
pass pass
def handleAskPartitionTable(self, conn, packet, offset_list): def handleAskPartitionTable(self, conn, packet, offset_list):
logging.warning('/!\ handleAskPartitionTable')
pass pass
def handleSendPartitionTable(self, conn, packet, ptid, row_list): def handleSendPartitionTable(self, conn, packet, ptid, row_list):
logging.warning('/!\ handleSendPartitionTable')
pass pass
def handleNotifyPartitionChanges(self, conn, packet, ptid, cell_list): def handleNotifyPartitionChanges(self, conn, packet, ptid, cell_list):
logging.warning('/!\ handleNotifyPartitionChanges')
pass pass
def handleStartOperation(self, conn, packet): def handleStartOperation(self, conn, packet):
logging.warning('/!\ handleStartOperation')
pass pass
def handleStopOperation(self, conn, packet): def handleStopOperation(self, conn, packet):
logging.warning('/!\ handleStopOperation')
pass pass
def handleAskUnfinishedTransactions(self, conn, packet): def handleAskUnfinishedTransactions(self, conn, packet):
logging.warning('/!\ handleAskUnfinishedTransactions')
pass pass
def handleAskTransactionInformation(self, conn, packet, tid): def handleAskTransactionInformation(self, conn, packet, tid):
logging.warning('/!\ handleAskTransactionInformation')
pass pass
def handleAskObjectPresent(self, conn, packet, oid, tid): def handleAskObjectPresent(self, conn, packet, oid, tid):
logging.warning('/!\ handleAskObjectPresent')
pass pass
def handleDeleteTransaction(self, conn, packet, tid): def handleDeleteTransaction(self, conn, packet, tid):
logging.warning('/!\ handleDeleteTransaction')
pass pass
def handleCommitTransaction(self, conn, packet, tid): def handleCommitTransaction(self, conn, packet, tid):
logging.warning('/!\ handleCommitTransaction')
pass pass
def handleLockInformation(self, conn, packet, tid): def handleLockInformation(self, conn, packet, tid):
logging.warning('/!\ handleLockInformation')
pass pass
def handleUnlockInformation(self, conn, packet, tid): def handleUnlockInformation(self, conn, packet, tid):
logging.warning('/!\ handleUnlockInformation')
pass 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