File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11Package: future
2- Version: 1.34.0-9117
2+ Version: 1.34.0-9118
33Title: Unified Parallel and Distributed Processing in R for Everyone
44Imports:
55 digest,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ source("incl/start.R")
22
33message(" *** FutureRegistry() ..." )
44
5- for (where in c(sprintf( " multicore-%s " , future ::: session_uuid()) , " rscript" )) {
5+ for (where in c(" multicore-dummy-uuid " , " rscript" )) {
66 message(sprintf(" *** FutureRegistry('%s', 'list') ..." , where ))
77 futures <- FutureRegistry(where , action = " list" )
88 print(futures )
Original file line number Diff line number Diff line change @@ -3,7 +3,10 @@ source("incl/start.R")
33message(" *** Demos ..." )
44
55message(" *** Fibonacci demo of the 'future' package ..." )
6+ # Temporarily protect against non-default R_FUTURE_PLAN
7+ oopts <- options(future.plan = NULL )
68demo(" fibonacci" , package = " future" , ask = FALSE )
9+ options(oopts )
710message(" *** Fibonacci demo of the 'future' package ... DONE" )
811
912
You can’t perform that action at this time.
0 commit comments