Fix the get_deployment_status call

The get_deployment_status function waits for a keyworded,
variable-length argument dictionary. This patch fixes that issue by
adding the right keyword for 'plan'.

This patch also adds a space in the output string in order to be
well-formatted.

Change-Id: I36fc4650e8481024ad985408b7ac5652acf26ec4
Signed-off-by: Gael Chamoulaud (Strider) <gchamoul@redhat.com>
(cherry picked from commit c246e80bfa)
This commit is contained in:
Gael Chamoulaud (Strider) 2021-01-25 18:56:13 +01:00
parent 70419d6bb0
commit c54ed778b5
No known key found for this signature in database
GPG Key ID: 4119D0305C651D66
1 changed files with 2 additions and 2 deletions

View File

@ -348,11 +348,11 @@ class TripleOValidatorRun(command.Command):
"inventory or use authentication."))
else:
if plan:
status = deployment.get_deployment_status(clients, plan)
status = deployment.get_deployment_status(clients, plan=plan)
if not status or status in NO_VALIDATION_STATE:
raise exceptions.CommandError(
_("The plan and the stack '{}' doesn't exist OR are "
"in 'failed' or 'deploying' state."
"in 'failed' or 'deploying' state. "
"Please use a valid plan".format(plan)))
else:
msg = "Running Validations without Overcloud settings."