Skip to content

Commit 4e5eb7d

Browse files
committed
soften messages for monitor messages with bad topics
1 parent e7f402a commit 4e5eb7d

File tree

1 file changed

+2
-2
lines changed
  • IPython/parallel/controller

1 file changed

+2
-2
lines changed

IPython/parallel/controller/hub.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,13 +468,13 @@ def dispatch_monitor_traffic(self, msg):
468468
except ValueError:
469469
idents=[]
470470
if not idents:
471-
self.log.error("Bad Monitor Message: %r", msg)
471+
self.log.error("Monitor message without topic: %r", msg)
472472
return
473473
handler = self.monitor_handlers.get(switch, None)
474474
if handler is not None:
475475
handler(idents, msg)
476476
else:
477-
self.log.error("Invalid monitor topic: %r", switch)
477+
self.log.error("Unrecognized monitor topic: %r", switch)
478478

479479

480480
@util.log_errors

0 commit comments

Comments
 (0)