File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
.pscale/cli-helper-scripts Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,16 +37,16 @@ function wait_for_deploy_request_merged {
37
37
echo " Deploy request $number is not ready after $retries retries. Exiting..."
38
38
return 2
39
39
fi
40
- echo " Deploy-request $number is not merged yet. Current status:"
40
+ echo " Deploy-request $number is not deployed yet. Current status:"
41
41
echo " show vitess_migrations\G" | pscale shell " $db " main --org " $org "
42
42
echo " Retrying in $wait seconds..."
43
43
sleep $wait
44
- elif [ " $output " = " \" complete\" " ]; then
45
- echo " Deploy-request $number has been merged successfully."
44
+ elif [ " $output " = " \" complete\" " ] || [ " $output " = " \" complete_pending_revert \" " ] ; then
45
+ echo " Deploy-request $number has been deployed successfully."
46
46
return 0
47
47
else
48
48
echo " Deploy-request $number with unknown status: $output "
49
49
return 3
50
50
fi
51
51
done
52
- }
52
+ }
You can’t perform that action at this time.
0 commit comments