Fix missing parent start() call in RpcWorker.

Patch 5be613490d 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:
Russell Bryant 2015-10-06 06:00:16 +01:00
parent 3829ec5b80
commit 7b6fb800ce
1 changed files with 1 additions and 0 deletions

View File

@ -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)()