Open
Description
You're using something like:
f <- function(X, ...) {
future_lapply(X, FUN = function(x) g(x, ...))
}
where ...
is passed to g()
as global variables, in
Lines 249 to 257 in 575046b
It's better to pass ...
as arguments as in:
f <- function(X, ...) {
future_lapply(X, FUN = function(x, ...) g(x, ...), ...)
}
I've created PR #9, which fixes this.
Your current approach will give an error in the next release of the future package.
Metadata
Metadata
Assignees
Labels
No labels