Skip to content

Commit b3aed36

Browse files
BUG FIX: Signaled FutureError of class 'FutureLaunch' in one case when it should have been 'FutureLaunchError'
1 parent 0a79b79 commit b3aed36

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.49.0-9010
2+
Version: 1.49.0-9011
33
Title: Unified Parallel and Distributed Processing in R for Everyone
44
Depends:
55
R (>= 3.2.0)

R/protected_api-FutureCondition-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ DeviceMisuseFutureError <- function(...) {
320320
#' @export
321321
FutureLaunchError <- function(..., future = NULL) {
322322
cond <- FutureError(..., future = future)
323-
class <- c("FutureLaunch", class(cond))
323+
class <- c("FutureLaunchError", class(cond))
324324
class(cond) <- class[!duplicated(class, fromLast = TRUE)]
325325
cond
326326
}

0 commit comments

Comments
 (0)