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 <rbryant@redhat.com>
This commit is contained in:
parent
3829ec5b80
commit
7b6fb800ce
@ -132,6 +132,7 @@ class RpcWorker(worker.NeutronWorker):
|
|||||||
self._servers = []
|
self._servers = []
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
|
super(RpcWorker, self).start()
|
||||||
for plugin in self._plugins:
|
for plugin in self._plugins:
|
||||||
if hasattr(plugin, self.start_listeners_method):
|
if hasattr(plugin, self.start_listeners_method):
|
||||||
servers = getattr(plugin, self.start_listeners_method)()
|
servers = getattr(plugin, self.start_listeners_method)()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user