diff --git a/vmware_nsx/nsxlib/v3/resources.py b/vmware_nsx/nsxlib/v3/resources.py index 196f5993c8..a9f4376aff 100644 --- a/vmware_nsx/nsxlib/v3/resources.py +++ b/vmware_nsx/nsxlib/v3/resources.py @@ -160,8 +160,7 @@ class SwitchingProfile(AbstractRESTResource): display_name=display_name, description=description, tags=tags or [], - mac_learning=mac_learning, - source_mac_change_allowed=True) + mac_learning=mac_learning) def create_port_mirror_profile(self, display_name, description, direction, destinations, tags=None): diff --git a/vmware_nsx/tests/unit/nsxlib/v3/test_resources.py b/vmware_nsx/tests/unit/nsxlib/v3/test_resources.py index 5f28b323d1..b7b69e30f2 100644 --- a/vmware_nsx/tests/unit/nsxlib/v3/test_resources.py +++ b/vmware_nsx/tests/unit/nsxlib/v3/test_resources.py @@ -182,7 +182,6 @@ class TestSwitchingProfileTestCase(nsxlib_testcase.NsxClientTestCase): 'display_name': 'plugin-mac-learning', 'description': 'mac-learning-for-plugin', 'tags': tags, - 'source_mac_change_allowed': True, }, sort_keys=True)) def test_find_by_display_name(self):