We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is not possible to export globals starting with a period, e.g.
> library(async) > plan(batchjobs, backend="local") > a <- 1 > x %<=% { 2 * a } > x [1] 2 > .b <- 2 > x %<=% { 2 * a * .b } Error in asyncBatchEvalQ(reg, exprs = list(task$expr), envir = task$envir, : BatchJobs does not support exported variables that start with a period (see https://github.com/tudo-r/BatchJobs/issues/103): '.b'
See tudo-r/BatchJobs#103 for troubleshooting and details.
The text was updated successfully, but these errors were encountered:
WORKAROUND: Decoding/encoding globals starting with a period [#42,#43]
82395d7
TESTS: Add test assert problematic BatchJobs globals are supported [#39…
001cb17
…, #42, #43]
Solved, cf. Issue #43.
Sorry, something went wrong.
Can we drop one of the workarounds? [#42]
7802601
[ci skip]
Clarify when we can cleanup [#42] [ci skip]
cc1ae0e
No branches or pull requests
It is not possible to export globals starting with a period, e.g.
See tudo-r/BatchJobs#103 for troubleshooting and details.
The text was updated successfully, but these errors were encountered: