From 2cbc02bc47d06da6fccf937b556c772560f0f96e Mon Sep 17 00:00:00 2001 From: Adit Sarfaty Date: Tue, 16 Oct 2018 11:22:19 +0300 Subject: [PATCH] NSX|V fix LBaaS operation status function params The plugin did not implement the LBaaS operation status for NSX-V butthe function exists, and its params should match the one of the NSX-T since the TVD plugin calls both. Change-Id: I6dbe00d35739a751748a86f3856e229c58881fad --- .../services/lbaas/nsx_v/implementation/loadbalancer_mgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx/services/lbaas/nsx_v/implementation/loadbalancer_mgr.py b/vmware_nsx/services/lbaas/nsx_v/implementation/loadbalancer_mgr.py index 590c27ea06..5b90312837 100644 --- a/vmware_nsx/services/lbaas/nsx_v/implementation/loadbalancer_mgr.py +++ b/vmware_nsx/services/lbaas/nsx_v/implementation/loadbalancer_mgr.py @@ -172,7 +172,7 @@ class EdgeLoadBalancerManagerFromDict(base_mgr.EdgeLoadbalancerBaseManager): return stats - def get_operating_status(self, context, id): + def get_operating_status(self, context, id, with_members=False): """Return a map of the operating status of all connected LB objects """ #TODO(asarfaty) implement return {}