Skip to content

Commit

Permalink
missing brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
jashapiro committed Apr 7, 2024
1 parent 3bcd6e1 commit 197f8ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/profile_awsbatch_auto.config
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
}
}

0 comments on commit 197f8ab

Please sign in to comment.