-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
307c662
commit 8c70076
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -245,7 +245,11 @@ jobs: | |
for SUBMISSION_ID in "${SUBMISSION_IDS[@]}"; do | ||
echo "Polling submission status for Submission ID: $SUBMISSION_ID" | ||
RESPONSE=$(python3 scripts/firecloud_api/firecloud_api2.py poll_job_status \ | ||
--submission_id "$SUBMISSION_ID") | ||
--submission_id "$SUBMISSION_ID" \ | ||
--sa-json-b64 "$SA_JSON_B64" \ | ||
--user "[email protected]" \ | ||
--workspace-namespace "warp-pipelines" \ | ||
--workspace-name "WARP Tests") | ||
if [ -z "$RESPONSE" ]; then | ||
echo "Failed to retrieve Workflow IDs for submission: $SUBMISSION_ID" | ||
|