Skip to content

Commit 6dbda9b

Browse files
The cluster backend now defaults to earlySignal = FALSE
This was effectively already the case, because of an internal thinko bug.
1 parent c2a739c commit 6dbda9b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
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.68.0-9013
2+
Version: 1.68.0-9014
33
Title: Unified Parallel and Distributed Processing in R for Everyone
44
Depends:
55
R (>= 3.2.0)

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
and `futureCall()`. Attempts to set it is now ignored and will
2424
produce a deprecation warning.
2525

26+
* The `cluster` backend now defaults to `earlySignal = FALSE`. This
27+
was effectively already the case, because of an internal thinko
28+
bug.
29+
2630

2731
# Version 1.68.0 [2025-11-16]
2832

R/backend_api-11.ClusterFutureBackend-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ClusterFutureBackend <- local({
2121
## Most recent 'workers' set up
2222
last <- NULL
2323

24-
function(workers = availableWorkers(constraints = "connections"), gc = TRUE, earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) {
24+
function(workers = availableWorkers(constraints = "connections"), gc = TRUE, earlySignal = FALSE, interrupts = FALSE, persistent = FALSE, ...) {
2525
debug <- isTRUE(getOption("future.debug"))
2626
if (debug) {
2727
mdebugf_push("ClusterFutureBackend(..., persistent = %s, gc = %s, earlySignal = %s) ...", persistent, gc, earlySignal)

man/FutureBackend-class.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)