Merge "Check for correct column name for execution show"

This commit is contained in:
Zuul 2020-07-14 00:04:02 +00:00 committed by Gerrit Code Review
commit 921f89e77c
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ function workflow_finished {
while [ $counter -gt 0 ]
do
RESULT=$(openstack workflow execution show -f value -c state $execution_id)
RESULT=$(openstack workflow execution show -f value -c State $execution_id)
if [ "$RESULT" == "ERROR" ]; then
echo "Workflow $execution_id finished with error. Check mistral logs."
return 1