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
This commit is contained in:
Gary Kotton 2016-07-21 01:33:07 -07:00
parent 53313a9700
commit fb45c6caa8

View File

@ -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