]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix missing parent start() call in RpcWorker.
authorRussell Bryant <rbryant@redhat.com>
Tue, 6 Oct 2015 05:00:16 +0000 (06:00 +0100)
committerRussell Bryant <rbryant@redhat.com>
Tue, 6 Oct 2015 05:01:03 +0000 (06:01 +0100)
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>
neutron/service.py

index f70cdee6cd91558d82b9b36049d529d2105cd64c..b211306a3313f4f0c201ee3dd4be8c24d10d62cc 100644 (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)()