Skip to content

Commit

Permalink
Merge pull request #13 from shikokuchuo/develop
Browse files Browse the repository at this point in the history
Removes resilience argument post mirai 1.1.0
  • Loading branch information
HenrikBengtsson authored Jun 11, 2024
2 parents 3eb5e16 + e6572fe commit e625b19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Package: future.mirai
Version: 0.2.1
Version: 0.2.1.9000
Depends:
future
Imports:
mirai (>= 0.12.1),
mirai (>= 1.1.0),
parallelly,
utils
Suggests:
Expand Down
2 changes: 1 addition & 1 deletion R/MiraiFuture-class.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ MiraiFuture <- function(expr = NULL,
daemons(n = 0L)
} else if (workers != nworkers) {
daemons(n = 0L) ## reset is required
daemons(n = workers, dispatcher = dispatcher, resilience = FALSE)
daemons(n = workers, dispatcher = dispatcher)
}
} else if (!is.null(workers)) {
stop("Argument 'workers' should be a numeric scalar or NULL: ", mode(workers))
Expand Down

0 comments on commit e625b19

Please sign in to comment.