From 9595a1f3a4b91dc6e8a39a70014771ebc8d6b89c Mon Sep 17 00:00:00 2001 From: Saman Ehsan Date: Mon, 28 Oct 2019 16:50:42 -0400 Subject: [PATCH] Fix path to final wf log directory (#191) --- lira/lira_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lira/lira_utils.py b/lira/lira_utils.py index 70569ec9..aa338323 100644 --- a/lira/lira_utils.py +++ b/lira/lira_utils.py @@ -274,7 +274,7 @@ def compose_config_options(cromwell_options_file, lira_config): # Required to trigger the cloud function that records Cromwell metadata in BigQuery options_json[ 'final_workflow_log_dir' - ] = f'{lira_config.google_project}-cromwell-logs' + ] = f'gs://{lira_config.google_project}-cromwell-logs' # Defer to value already in options file if it exists # Docs on default runtime attributes: https://cromwell.readthedocs.io/en/latest/wf_options/Overview/