Cache lb_plugin in the loadbalancer driver

Loadbalancer driver was retrieving the loadbalancer service plugin object
on every call, while it could be cached.

Change-Id: I7932aa18c73ed01b8c7f5f5aa3e750cbbeee37b8
This commit is contained in:
Kobi Samoray 2015-08-25 20:35:46 +03:00
parent 0a2bbaa33e
commit 686780846a

View File

@ -256,11 +256,14 @@ class EdgeLbDriver(object):
# self.vcns is initialized by subclass
self.vcns = None
self._fw_section_id = None
self._lb_plugin = None
self._lb_driver_prop = None
def _get_lb_plugin(self):
loaded_plugins = manager.NeutronManager().get_service_plugins()
return loaded_plugins[constants.LOADBALANCER]
if not self._lb_plugin:
loaded_plugins = manager.NeutronManager().get_service_plugins()
self._lb_plugin = loaded_plugins[constants.LOADBALANCER]
return self._lb_plugin
@property
def _lb_driver(self):