We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f402a commit 4e5eb7dCopy full SHA for 4e5eb7d
IPython/parallel/controller/hub.py
@@ -468,13 +468,13 @@ def dispatch_monitor_traffic(self, msg):
468
except ValueError:
469
idents=[]
470
if not idents:
471
- self.log.error("Bad Monitor Message: %r", msg)
+ self.log.error("Monitor message without topic: %r", msg)
472
return
473
handler = self.monitor_handlers.get(switch, None)
474
if handler is not None:
475
handler(idents, msg)
476
else:
477
- self.log.error("Invalid monitor topic: %r", switch)
+ self.log.error("Unrecognized monitor topic: %r", switch)
478
479
480
@util.log_errors
0 commit comments