Skip to content

Commit

Permalink
Improve message
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Feb 19, 2024
1 parent 0a8e07f commit 5d3f5be
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions R/class_process.R
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,17 @@ process_class <- R6::R6Class(
dirname(dirname(self$database$path)),
"folder as the local data store for data and metadata files.",
"Please do not attempt to run more than one pipeline on the same",
"data store because it will mangle thos important local files.",
"data store because it will mangle those important local files.",
"Before trying again, check that process",
pid,
"is really a {targets} pipeline and not a false positive,",
"then terminate it manually. In case of a false positive,",
"remove file",
self$database$path,
"and try again."
"remove the file",
shQuote(self$database$path),
"and try again. False positives may happen if you run",
"different calls to tar_make() in quick succession",
"or if you run tar_make(callr_function = NULL) in a",
"different R process and keep that process running."
)
)
# nocov end
Expand Down

0 comments on commit 5d3f5be

Please sign in to comment.