Skip to content

Commit 1de0c36

Browse files
GHA: typo
1 parent 56e7cf2 commit 1de0c36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
if: runner.os == 'Windows'
121121
run: |
122122
rcmdcheck::rcmdcheck(
123-
args = c("--no-manual", "--ignore-vignetttes", "--as-cran", if (.Platform$OS.type == "windows" && getRversion() >= "4.2.0") "--no-multiarch"),
123+
args = c("--no-manual", "--ignore-vignettes", "--as-cran", if (.Platform$OS.type == "windows" && getRversion() >= "4.2.0") "--no-multiarch"),
124124
check_dir = "check"
125125
)
126126
shell: Rscript {0}

R/backend_api-ClusterFuture-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ requestNode <- function(await, workers, timeout = getOption("future.wait.timeout
577577
## Find which node is available
578578
avail <- rep(TRUE, times = length(workers))
579579
futures <- FutureRegistry(reg, action = "list", earlySignal = FALSE)
580-
nodes <- unlist(lapply(futures, FUN = function(f) f$node), use.names = FALSE)
580+
nodes <- unlist(lapply(futures, FUN = function(f) f[["node"]]), use.names = FALSE)
581581
avail[nodes] <- FALSE
582582

583583
## Sanity check

0 commit comments

Comments
 (0)