Skip to content

Commit

Permalink
fix output for failed or aborted jobs (#57407)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrindle authored Oct 2, 2024
1 parent 35afb01 commit bb66e6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ wait_for_job_to_finish_running() {
if [[ "$result" != "null" ]]; then
# Job has completed
echo "Job Result: $result"
curl_info=$(curl -k -s --resolve "$endpoint_resolve" "${job_url}/consoleText")
curl_info=$(curl -k -s --resolve "$endpoint_resolve" "$1/consoleText")
echo "$curl_info"
if [ "$result" == "SUCCESS" ]; then
exit 0
Expand Down

0 comments on commit bb66e6d

Please sign in to comment.