We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd336ab commit 391dc5cCopy full SHA for 391dc5c
plugins/nf-azure/src/main/nextflow/cloud/azure/config/AzBatchOpts.groovy
@@ -68,7 +68,7 @@ class AzBatchOpts implements CloudTransferOptions {
68
location = config.location
69
autoPoolMode = config.autoPoolMode
70
allowPoolCreation = config.allowPoolCreation
71
- requireContainer = config.requireContainer ?: true
+ requireContainer = config.requireContainer == null ? true : config.requireContainer
72
terminateJobsOnCompletion = config.terminateJobsOnCompletion != Boolean.FALSE
73
deleteJobsOnCompletion = config.deleteJobsOnCompletion
74
deletePoolsOnCompletion = config.deletePoolsOnCompletion
0 commit comments