From fb45c6caa83e167268a3466a25a5ff1984a97d70 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Thu, 21 Jul 2016 01:33:07 -0700 Subject: [PATCH] NSX|V: remove validations for AZ's Do not enforce the user to use NSX 6.2.x. They can use 6.1.x. This has a downside of the configuration only being validated at runtime. Change-Id: Iedac8e55803ef8a711780fd66d978eec21b9af18 --- vmware_nsx/plugins/nsx_v/plugin.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vmware_nsx/plugins/nsx_v/plugin.py b/vmware_nsx/plugins/nsx_v/plugin.py index aa269bc881..e3b5d7bd11 100644 --- a/vmware_nsx/plugins/nsx_v/plugin.py +++ b/vmware_nsx/plugins/nsx_v/plugin.py @@ -3142,12 +3142,6 @@ class NsxVPluginV2(addr_pair_db.AllowedAddressPairsMixin, ver = self.nsx_v.vcns.get_version() if version.LooseVersion(ver) < version.LooseVersion('6.2.0'): - # Do not support availability zones hints below 6.2 - if cfg.CONF.nsxv.availability_zones: - error = (_("Availability zones are not supported for version " - "%s") % ver) - raise nsx_exc.NsxPluginException(err_msg=error) - LOG.warning(_LW("Skipping validations. Not supported by version.")) return # Validations below only supported by 6.2.0 and above