No docs for config `bucketDir`
Using the AWS Batch executor, I have long set up my config file like this:
bucketDir = "s3://my-s3-bucket"
aws {
region = "us-east-1"
batch {
jobRole = "arn:aws:iam::123456789::role/DummyJobRole"
}
}
However, the Nextflow LSP extension (v1.4.1) for VS Code now tells me: Unrecognized config option 'bucketDir'
If I change it to workDir the code inspection error goes away, but then when I try to run my workflow, I get:
When using `awsbatch` executor an S3 bucket must be provided as working directory using either the `-bucket-dir` or `-work-dir` command line option
I can't find any mention of bucketDir in the Nextflow docs for AWS Batch (although there is one example for Azure.)
From what I can tell, it seems like this config option is still working, but maybe the config docs need to be updated to show that it's valid? (I'm guessing that whatever data document generates the config docs is also used in the LSP).
I searched through all the release notes from the past few years, and didn't see anything relevant about bucketDir.
Cross reference: I posted this question to the Nextflow slack channel.
Thanks! Leaving here for addition to the Nextflow docs. Added https://github.com/nextflow-io/language-server/issues/123 for the error in VSCode coming from the language server.