From: Russell Bryant Date: Tue, 6 Oct 2015 05:00:16 +0000 (+0100) Subject: Fix missing parent start() call in RpcWorker. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=7b6fb800ced7c0b3f0be90d1c67d5ef58e58b82e;p=openstack-build%2Fneutron-build.git Fix missing parent start() call in RpcWorker. Patch 5be613490deebf494f2ecbbcd8cb5dd0d6f5e1b3 erroneously removed this line that is still needed which broke networking-ovn, at least. Change-Id: I31981e905f892df474c57b45d3e70ebfbeeae1db Signed-off-by: Russell Bryant --- diff --git a/neutron/service.py b/neutron/service.py index f70cdee6c..b211306a3 100644 --- a/neutron/service.py +++ b/neutron/service.py @@ -132,6 +132,7 @@ class RpcWorker(worker.NeutronWorker): self._servers = [] def start(self): + super(RpcWorker, self).start() for plugin in self._plugins: if hasattr(plugin, self.start_listeners_method): servers = getattr(plugin, self.start_listeners_method)()