fix:"openstack vnf set" command can't execute

internal function's args is wrong.

Closes-Bug: #1839232

Change-Id: Iea1becdc0ee5dea3a94d843c558f28bce38e4d1c
(cherry picked from commit 9a1020fc84)
This commit is contained in:
Hiroya Nakaya 2019-08-07 00:35:28 +00:00 committed by dharmendra kushwaha
parent edb7dad611
commit b98ef94e46
1 changed files with 1 additions and 1 deletions

View File

@ -392,7 +392,7 @@ class UpdateVNF(command.ShowOne):
raise exceptions.InvalidInput(e)
if config:
body[_VNF]['attributes'] = {'config': config}
tackerV10.update_dict(parsed_args, body[_VNF])
tackerV10.update_dict(parsed_args, body[_VNF], ['tenant_id'])
return body
def take_action(self, parsed_args):