Skip to content
New issue

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

LIMITATIONS: It is not possible to export globals starting with a period #42

Closed
HenrikBengtsson opened this issue Oct 5, 2015 · 1 comment

Comments

@HenrikBengtsson
Copy link
Owner

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.

@HenrikBengtsson
Copy link
Owner Author

Solved, cf. Issue #43.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant