We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a80c42 commit d2c6c63Copy full SHA for d2c6c63
1 file changed
R/check_process.R
@@ -80,8 +80,8 @@ check_process <- R6::R6Class(
80
# finalize only if the last subcheck has reported status. However
81
# if we stuck in this state for longer than 3 minutes we should
82
# try to finish anyway, to prevent possible infinite loops.
83
- if (checks[length(checks)] != "" |
84
- Sys.time() - private$time_finish >= as.difftime(3, units = "mins")) {
+ if (checks[length(checks)] != "" ||
+ (Sys.time() - self$get_time_finish() >= as.difftime(3, units = "mins"))) {
85
self$save_results()
86
private$cache_parsed_results()
87
private$free_file_descriptors()
0 commit comments