From dfdd4be6474ba6ca2f605bb27dc8641fb131fd34 Mon Sep 17 00:00:00 2001 From: Adit Sarfaty Date: Wed, 28 Nov 2018 13:12:15 +0200 Subject: [PATCH] TVD Octavia: Fix stats_getter parameters list The parameters list of this method should match the list of the same method for the V/T drivers. Change-Id: I115140adb5190e3e391ccf5dc354ed2dcac0be88 --- vmware_nsx/services/lbaas/octavia/tvd_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx/services/lbaas/octavia/tvd_wrapper.py b/vmware_nsx/services/lbaas/octavia/tvd_wrapper.py index b8980b7a0f..87938c921f 100644 --- a/vmware_nsx/services/lbaas/octavia/tvd_wrapper.py +++ b/vmware_nsx/services/lbaas/octavia/tvd_wrapper.py @@ -55,7 +55,7 @@ class OctaviaTVDWrapper(object): return manager.delete(context, obj, completor, **args) -def stats_getter(context, core_plugin): +def stats_getter(context, core_plugin, ignore_list=None): """Call stats of both plugins""" for plugin_type in [projectpluginmap.NsxPlugins.NSX_V, projectpluginmap.NsxPlugins.NSX_T]: