From 1c717b2f3ccb9748ba26a453cc2ea9c7b8d811ed 2012-08-01 22:54:26 From: MinRK Date: 2012-08-01 22:54:26 Subject: [PATCH] ignore data_pub in Hub --- diff --git a/IPython/parallel/controller/hub.py b/IPython/parallel/controller/hub.py index 5782a5e..54eea28 100644 --- a/IPython/parallel/controller/hub.py +++ b/IPython/parallel/controller/hub.py @@ -861,6 +861,8 @@ class Hub(SessionFactory): d[msg_type] = content elif msg_type == 'status': pass + elif msg_type == 'data_pub': + self.log.info("ignored data_pub message for %s" % msg_id) else: self.log.warn("unhandled iopub msg_type: %r", msg_type)