Skip to content

Commit d144f0b

Browse files
authored
more fixes for subworkflows #112 (#116)
* yet another fix for sub-workflow expansion * fix 112
1 parent 81faa4e commit d144f0b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cromshell

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ fi
6868
export CROMWELL_URL=${CROMWELL_URL:-"${CROMWELL_SERVER_FROM_FILE}"}
6969
FOLDER_URL=$( echo ${CROMWELL_URL} | sed -e 's#ht.*://##g' )
7070
CROMWELL_METADATA_PARAMETERS="excludeKey=submittedFiles&expandSubWorkflows=true"
71-
CROMWELL_SLIM_METADATA_PARAMETERS="${CROMWELL_SLIM_METADATA_PARAMETERS:-includeKey=subWorkflowMetadata&includeKey=subWorkflowId&includeKey=id&includeKey=executionStatus&includeKey=backendStatus&includeKey=status&includeKey=callRoot&expandSubWorkflows=true}"
71+
# broken into two lines to ensure that users with custom CROMWELL_SLIM_METADATA_PARAMETERS will still have subworkflow metadata available in the outputs
72+
CROMWELL_SLIM_METADATA_PARAMETERS="${CROMWELL_SLIM_METADATA_PARAMETERS:-includeKey=id&includeKey=executionStatus&includeKey=backendStatus&includeKey=status&includeKey=callRoot&expandSubWorkflows=true}"
73+
CROMWELL_SLIM_METADATA_PARAMETERS+="&includeKey=subWorkflowMetadata&includeKey=subWorkflowId"
7274

7375
CURL_CONNECT_TIMEOUT=5
7476
let CURL_MAX_TIMEOUT=2*${CURL_CONNECT_TIMEOUT}

0 commit comments

Comments
 (0)