From 197f8ab12bd966c7030f3a407aca7e3fe07d29aa Mon Sep 17 00:00:00 2001 From: Joshua Shapiro Date: Sun, 7 Apr 2024 08:55:14 -0700 Subject: [PATCH] missing brackets --- config/profile_awsbatch_auto.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/profile_awsbatch_auto.config b/config/profile_awsbatch_auto.config index ffde2ed7..3c378c37 100644 --- a/config/profile_awsbatch_auto.config +++ b/config/profile_awsbatch_auto.config @@ -17,6 +17,6 @@ process { executor = 'awsbatch' queue = { task.attempt < 3 ? 'nextflow-batch-autoscale-queue' : 'nextflow-batch-priority-queue'} withLabel: 'long_running' { - queue = task.attempt < 2 ? 'nextflow-batch-autoscale-queue' : 'nextflow-batch-priority-queue' + queue = { task.attempt < 2 ? 'nextflow-batch-autoscale-queue' : 'nextflow-batch-priority-queue' } } }