Merge "NSXv3: Fix allowed address pairs switching profile"

This commit is contained in:
Jenkins 2016-10-23 23:46:17 +00:00 committed by Gerrit Code Review
commit a1e38ed7cc
2 changed files with 3 additions and 1 deletions

View File

@ -183,6 +183,7 @@ class TestSwitchingProfileTestCase(nsxlib_testcase.NsxClientTestCase):
'display_name': 'plugin-mac-learning',
'description': 'mac-learning-for-plugin',
'tags': tags,
'mac_change_allowed': True,
}, sort_keys=True))
def test_find_by_display_name(self):

View File

@ -160,7 +160,8 @@ class SwitchingProfile(AbstractRESTResource):
display_name=display_name,
description=description,
tags=tags or [],
mac_learning=mac_learning)
mac_learning=mac_learning,
mac_change_allowed=True)
def create_port_mirror_profile(self, display_name, description,
direction, destinations, tags=None):