Use correct extra_config format
Use correct extra_configs format when updating logical port Change-Id: I27f28b52548f116f3e52dda70f158f5baa27cd88
This commit is contained in:
parent
1d6b9f27a1
commit
468dfad449
@ -307,11 +307,7 @@ class LogicalPortTestCase(BaseTestResource):
|
|||||||
return fake_profile_dicts
|
return fake_profile_dicts
|
||||||
|
|
||||||
def _get_extra_config_dicts(self, fake_port):
|
def _get_extra_config_dicts(self, fake_port):
|
||||||
fake_extra_config_dicts = []
|
fake_extra_config_dicts = fake_port['extra_configs']
|
||||||
for config in fake_port['extra_configs']:
|
|
||||||
fake_extra_config_dicts.append(
|
|
||||||
{'config_value': config['config_pair']['value'],
|
|
||||||
'config_key': config['config_pair']['key']})
|
|
||||||
return fake_extra_config_dicts
|
return fake_extra_config_dicts
|
||||||
|
|
||||||
def _get_pktcls_bindings(self):
|
def _get_pktcls_bindings(self):
|
||||||
|
@ -129,14 +129,7 @@ class LogicalPort(utils.NsxLibApiBase):
|
|||||||
body['description'] = description
|
body['description'] = description
|
||||||
|
|
||||||
if extra_configs:
|
if extra_configs:
|
||||||
configs = []
|
body['extra_configs'] = extra_configs
|
||||||
for config in extra_configs:
|
|
||||||
configs.append({
|
|
||||||
'config_pair': {
|
|
||||||
'value': config.get('config_value'),
|
|
||||||
'key': config.get('config_key')}
|
|
||||||
})
|
|
||||||
body['extra_configs'] = configs
|
|
||||||
|
|
||||||
return body
|
return body
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user