From d6359fb6b106f6dea66d4470b15e7269bf31c9a0 Mon Sep 17 00:00:00 2001 From: npetrill Date: Tue, 10 Dec 2024 12:41:39 -0500 Subject: [PATCH] print instead of log --- .github/workflows/test_illumina_genotyping_array.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_illumina_genotyping_array.yml b/.github/workflows/test_illumina_genotyping_array.yml index 9bd26e95d1..a0ca0b0441 100644 --- a/.github/workflows/test_illumina_genotyping_array.yml +++ b/.github/workflows/test_illumina_genotyping_array.yml @@ -230,15 +230,13 @@ jobs: for input_file in "$INPUTS_DIR"/*.json; do while [ $attempt -le $MAX_RETRIES ]; do echo "Attempt $attempt: Submitting job for input file: $input_file" - #echo "Submitting job for input file: $input_file" - #cat "$SUBMISSION_DATA_FILE" - $SUBMISSION_ID=$(python3 scripts/firecloud_api/firecloud_api2.py submit_job \ + SUBMISSION_ID=$(python3 scripts/firecloud_api/firecloud_api2.py submit_job \ --workspace-namespace "warp-pipelines" \ --workspace-name "WARP Tests" \ --sa-json-b64 "$SA_JSON_B64" \ --user "pdt-tester@warp-pipeline-dev.iam.gserviceaccount.com" \ --submission_data_file "$SUBMISSION_DATA_FILE") - #echo "submission id is $SUBMISSION_ID" + echo "submission id is $SUBMISSION_ID" #SUBMISSION_ID=$(firecloud_action submit_job --submission_data_file "$SUBMISSION_DATA_FILE")