Skip to content

Commit 73b490d

Browse files
committed
cleanup
1 parent 1322df2 commit 73b490d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/waitForFiles.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ waitForFile = function(fn, timeout = NA_real_) {
3535
if (fn %chin% list.files(dirname(fn), all.files = TRUE))
3636
return(TRUE)
3737
if (Sys.time() > timeout)
38-
stopf("Timeout while waiting for %i files, e.g. '%s'", length(fns), fns[1L])
38+
stopf("Timeout while waiting for file '%s'", fn)
3939
}
4040
}
4141

R/zzz.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ batchtools$hooks = list(
5959

6060
.onAttach = function(libname, pkgname) {
6161
msg = paste(
62-
"Breaking change in batchtools v0.9.6:",
62+
"Breaking change in batchtools v0.9.7:",
6363
"The format of the returned data.table of the functions `reduceResultsDataTable()`, getJobTable()`, `getJobPars()`, and `getJobResources()` has changed.",
6464
"List columns are not unnested automatically anymore.",
6565
"To manually unnest tables, batchtools provides the helper function `flatten()` now, e.g. `flatten(getJobPars())`."

0 commit comments

Comments
 (0)