From 9667f4f6d1d54ad212335a7be78d4742085a9ad9 Mon Sep 17 00:00:00 2001 From: Adit Sarfaty <asarfaty@vmware.com> Date: Thu, 1 Feb 2018 14:43:10 +0200 Subject: [PATCH] TVD: Fix FWaaS typo TVD plugin for FWaaS overides all the 'list' actions. by mistake get_firewall was also overriden Change-Id: I0904a845cdcfbfa248de501bf368b4a134fe2026 --- vmware_nsx/services/fwaas/nsx_tv/plugin_v1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_nsx/services/fwaas/nsx_tv/plugin_v1.py b/vmware_nsx/services/fwaas/nsx_tv/plugin_v1.py index bdb0463517..7dfb475277 100644 --- a/vmware_nsx/services/fwaas/nsx_tv/plugin_v1.py +++ b/vmware_nsx/services/fwaas/nsx_tv/plugin_v1.py @@ -24,6 +24,6 @@ class FwaasTVPluginV1(fwaas_plugin.FirewallPlugin): This plugin adds separation between T/V instances """ - methods_to_separate = ['get_firewall', + methods_to_separate = ['get_firewalls', 'get_firewall_policies', 'get_firewall_rules']