From 11703b49c7b9867ccc22f7f93aea0ecb457f988e Mon Sep 17 00:00:00 2001 From: be-marc Date: Sat, 10 Feb 2024 11:41:41 +0100 Subject: [PATCH] fix: debug --- R/Rush.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/Rush.R b/R/Rush.R index 0c1dd68..8ea2b33 100644 --- a/R/Rush.R +++ b/R/Rush.R @@ -417,7 +417,7 @@ Rush = R6::R6Class("Rush", # check local workers without a heartbeat local_workers = r$SMEMBERS(private$.get_key("local_workers")) lost_workers_local = if (length(local_workers)) { - lg$debug("Checking %i worker(s) with process id", length(local_workers)) + # lg$debug("Checking %i worker(s) with process id", length(local_workers)) running = map_lgl(local_workers, function(worker_id) self$processes[[worker_id]]$is_alive()) if (all(running)) return(invisible(self))