diff --git a/vmware_nsx/plugins/nsx_v3/plugin.py b/vmware_nsx/plugins/nsx_v3/plugin.py index 320f7b56f9..f2b7eb5c33 100644 --- a/vmware_nsx/plugins/nsx_v3/plugin.py +++ b/vmware_nsx/plugins/nsx_v3/plugin.py @@ -301,9 +301,8 @@ class NsxV3Plugin(agentschedulers_db.AZDhcpAgentSchedulerDbMixin, if self.nsxlib.feature_supported(nsxlib_consts.FEATURE_TRUNK_VLAN): self.supported_extension_aliases.append("vlan-transparent") else: - raise NotImplementedError( - _("Current NSX version %s doesn't support " - "transparent vlans") % self.nsxlib.get_version()) + LOG.warning("Current NSX version %s doesn't support " + "transparent vlans", self.nsxlib.get_version()) # Register NSXv3 trunk driver to support trunk extensions self.trunk_driver = trunk_driver.NsxV3TrunkDriver.create(self)