Can't pause a async action using cli

The IDLE state was mixed up with the PAUSED state.

Change-Id: I8a4d1247ac3bbece881c31e322f9e2b58819e627
Closes-Bug: 1791273
Signed-off-by: Vitalii Solodilov <mcdkr@yandex.ru>
This commit is contained in:
Vitalii Solodilov 2018-09-07 14:33:10 +04:00
parent b0cbf66d49
commit 62034999bc
2 changed files with 3 additions and 3 deletions

View File

@ -249,7 +249,7 @@ class Update(command.ShowOne):
parser.add_argument(
'--state',
dest='state',
choices=['IDLE', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED'],
choices=['PAUSED', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED'],
help='Action execution state')
parser.add_argument(
'--output',

View File

@ -125,7 +125,7 @@ class TestCLIActionExecutions(base.BaseCommandTest):
)
def test_update(self):
states = ['IDLE', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED']
states = ['PAUSED', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED']
for state in states:
action_ex_dict = copy.deepcopy(ACTION_EX_DICT)
@ -156,7 +156,7 @@ class TestCLIActionExecutions(base.BaseCommandTest):
self.assertEqual(expected_result, result[1])
def test_update_invalid_state(self):
states = ['PAUSED', 'WAITING', 'DELAYED']
states = ['IDLE', 'WAITING', 'DELAYED']
# Redirect the stderr so it doesn't show during tox
_stderr = sys.stderr