Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
nikellepetrillo committed Dec 11, 2024
1 parent 0623858 commit b416d8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test_illumina_genotyping_array.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,9 @@ jobs:
- name: Monitor Workflow Status
run: |
echo "Monitoring the status of submitted workflows..."
echo $submission_ids
for SUBMISSION_ID in "${submission_ids[@]}"; do
# Convert the space-separated string into an array
IFS=' ' read -r -a submission_ids_array <<< "$submission_ids"
for SUBMISSION_ID in "${submission_ids_array[@]}"; do
echo "Polling submission status for Submission ID: $SUBMISSION_ID"
python3 scripts/firecloud_api/firecloud_api2.py poll_job_status \
--submission_id "$SUBMISSION_ID" \
Expand Down

0 comments on commit b416d8f

Please sign in to comment.