issue #213: core: fix shutdown crash due to member variable rename

pull/255/head
David Wilson 6 years ago
parent 40c6c6426f
commit 49fb25ee1c

@ -1610,7 +1610,7 @@ class ExternalContext(object):
self.config = config
def _on_broker_shutdown(self):
self.channel.close()
self.recv.close()
def _on_broker_exit(self):
if not self.config['profiling']:
@ -1672,7 +1672,6 @@ class ExternalContext(object):
in_fd = self.config.get('in_fd', 100)
out_fd = self.config.get('out_fd', 1)
self.recv = Receiver(router=self.router,
handle=CALL_FUNCTION,
policy=has_parent_authority)

Loading…
Cancel
Save