Skip to content

Commit 19b1e1f

Browse files
evalFuture(): Use attach(..., warn.conflicts = FALSE) to avoid conflict message
1 parent 240e51d commit 19b1e1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future
2-
Version: 1.34.0-9095
2+
Version: 1.34.0-9096
33
Title: Unified Parallel and Distributed Processing in R for Everyone
44
Imports:
55
digest,

R/expressions.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ evalFuture <- function(expr, stdout = TRUE, conditionClasses = character(0L), sp
372372

373373
if (length(globals) > 0) {
374374
base_attach <- base::attach ## To please R CMD check
375-
base_attach(globals, pos = 2L, name = "future:globals")
375+
base_attach(globals, pos = 2L, name = "future:globals", warn.conflicts = FALSE)
376376
on.exit({
377377
detach(name = "future:globals")
378378
}, add = TRUE)

0 commit comments

Comments
 (0)