Merge "Fix error in flavor set/unset command"
This commit is contained in:
commit
6bf60180a2
openstackclient
releasenotes/notes
@ -239,7 +239,8 @@ class SetFlavor(command.Command):
|
||||
|
||||
def take_action(self, parsed_args):
|
||||
compute_client = self.app.client_manager.compute
|
||||
flavor = compute_client.flavors.find(name=parsed_args.flavor)
|
||||
flavor = utils.find_resource(compute_client.flavors,
|
||||
parsed_args.flavor)
|
||||
flavor.set_keys(parsed_args.property)
|
||||
|
||||
|
||||
@ -289,5 +290,6 @@ class UnsetFlavor(command.Command):
|
||||
|
||||
def take_action(self, parsed_args):
|
||||
compute_client = self.app.client_manager.compute
|
||||
flavor = compute_client.flavors.find(name=parsed_args.flavor)
|
||||
flavor = utils.find_resource(compute_client.flavors,
|
||||
parsed_args.flavor)
|
||||
flavor.unset_keys(parsed_args.property)
|
||||
|
@ -288,8 +288,10 @@ class TestFlavorSet(TestFlavor):
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
result = self.cmd.take_action(parsed_args)
|
||||
|
||||
self.flavors_mock.find.assert_called_with(name='baremetal')
|
||||
try:
|
||||
self.flavors_mock.find.assert_called_with(name=parsed_args.flavor)
|
||||
except Exception:
|
||||
self.flavors_mock.get.assert_called_with(parsed_args.flavor)
|
||||
self.assertIsNone(result)
|
||||
|
||||
|
||||
@ -382,6 +384,8 @@ class TestFlavorUnset(TestFlavor):
|
||||
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
||||
|
||||
result = self.cmd.take_action(parsed_args)
|
||||
|
||||
self.flavors_mock.find.assert_called_with(name='baremetal')
|
||||
try:
|
||||
self.flavors_mock.find.assert_called_with(name=parsed_args.flavor)
|
||||
except Exception:
|
||||
self.flavors_mock.get.assert_called_with(parsed_args.flavor)
|
||||
self.assertIsNone(result)
|
||||
|
5
releasenotes/notes/bug-1575624-87957ff60ad661a6.yaml
Normal file
5
releasenotes/notes/bug-1575624-87957ff60ad661a6.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
fixes:
|
||||
- Fixed ``flavor set/unset`` command to properly find a
|
||||
flavor to be set/unset by flavor id.
|
||||
[Bug `1575624 <https://bugs.launchpad.net/bugs/1575624>`_]
|
Loading…
x
Reference in New Issue
Block a user