[qa] mininode: fail on send_message instead of silent return

This commit is contained in:
MarcoFalke 2016-05-22 11:37:42 +02:00
parent 66db2d62d5
commit facb6c0bf8
1 changed files with 1 additions and 1 deletions

View File

@ -1315,7 +1315,7 @@ class NodeConn(asyncore.dispatcher):
def send_message(self, message, pushbuf=False):
if self.state != "connected" and not pushbuf:
return
raise IOError('Not connected, no pushbuf')
self.show_debug_msg("Send %s" % repr(message))
command = message.command
data = message.serialize()