File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11Package: parallelly
2- Version: 1.46.1-9018
2+ Version: 1.46.1-9019
33Title: Enhancing the 'parallel' Package
44Imports:
55 parallel,
Original file line number Diff line number Diff line change 1818 would become ` c("n09", "n010") ` whereas it should be `c("n09",
1919 "n10")`.
2020
21+ * ` availableWorkers(method = "Slurm") ` did not, as documented, fall
22+ back to legacy environment variable ` SLURM_NODELIST ` when
23+ ` SLURM_JOB_NODELIST ` is not set
24+
2125
2226# Version 1.46.1 [ 2026-01-07]
2327
Original file line number Diff line number Diff line change @@ -719,7 +719,7 @@ availableWorkersSlurm <- function() {
719719 # # Example:
720720 # # SLURM_JOB_NODELIST=n1,n[3-8],n[23-25]
721721 nodelist <- getenv_chr(" SLURM_JOB_NODELIST" )
722- if (is.na(nodelist )) data <- getenv_chr(" SLURM_NODELIST" )
722+ if (is.na(nodelist )) nodelist <- getenv_chr(" SLURM_NODELIST" )
723723 if (is.na(nodelist )) return (NA_character_ )
724724
725725 # # Parse and expand nodelist
You can’t perform that action at this time.
0 commit comments