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 ed86d2f commit cfc7665Copy full SHA for cfc7665
DESCRIPTION
@@ -1,5 +1,5 @@
1
Package: future
2
-Version: 1.34.0-9370
+Version: 1.34.0-9371
3
Title: Unified Parallel and Distributed Processing in R for Everyone
4
Depends:
5
R (>= 3.2.0)
R/utils_api-plan.R
@@ -476,10 +476,14 @@ plan <- local({
476
} else if (n > 1L && (calls[[n - 1L]][[1]] != "db_state")) {
477
patch <- TRUE
478
}
479
+
480
if (patch) {
481
ignore <- c("init", "backend")
482
+ ## Prune 'class' attribute
483
class <- class(stack)
484
stack <- lapply(stack, FUN = function(s) {
485
486
+ class(s) <- setdiff(class(s), "FutureStrategy")
487
for (name in ignore) attr(s, name) <- NULL
488
s
489
})
0 commit comments