From 5836edfc73e400f9feba2cca9b0c7349fdfa46cb Mon Sep 17 00:00:00 2001 From: Adam Nichols Date: Mon, 4 Dec 2023 19:38:36 -0500 Subject: [PATCH] Exclude subworkflows --- src/ci/bin/test.inc.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ci/bin/test.inc.sh b/src/ci/bin/test.inc.sh index b6b26678a00..7da8290b9a1 100755 --- a/src/ci/bin/test.inc.sh +++ b/src/ci/bin/test.inc.sh @@ -1619,6 +1619,7 @@ cromwell::build::print_workflow_statistics() { START_TIMESTAMP as START, END_TIMESTAMP as end FROM WORKFLOW_METADATA_SUMMARY_ENTRY + WHERE PARENT_WORKFLOW_EXECUTION_UUID IS NULL # exclude subworkflows ORDER BY START_TIMESTAMP DESC LIMIT 20;" @@ -1629,6 +1630,7 @@ cromwell::build::print_workflow_statistics() { START_TIMESTAMP as start, END_TIMESTAMP as END FROM WORKFLOW_METADATA_SUMMARY_ENTRY + WHERE PARENT_WORKFLOW_EXECUTION_UUID IS NULL ORDER BY END_TIMESTAMP DESC LIMIT 20;" @@ -1639,6 +1641,7 @@ cromwell::build::print_workflow_statistics() { START_TIMESTAMP as start, END_TIMESTAMP as end FROM WORKFLOW_METADATA_SUMMARY_ENTRY + WHERE PARENT_WORKFLOW_EXECUTION_UUID IS NULL ORDER BY RUNTIME_MINUTES DESC LIMIT 20;" }