From f968e313967843179846ed12cadf1602d2a31091 Mon Sep 17 00:00:00 2001 From: Dmitry Selivanov Date: Sun, 14 Apr 2024 13:47:33 +0800 Subject: [PATCH] minor - user "=" syntax --- R/BackendRserve.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/BackendRserve.R b/R/BackendRserve.R index 3139069..f9cf94c 100644 --- a/R/BackendRserve.R +++ b/R/BackendRserve.R @@ -348,7 +348,7 @@ ApplicationProcess = R6::R6Class( #' @param signal Signal code. kill = function(signal = 15L) { # get childs - child_pids <- suppressWarnings(system(sprintf("pgrep -P %s", self$pid), intern = TRUE)) + child_pids = suppressWarnings(system(sprintf("pgrep -P %s", self$pid), intern = TRUE)) # kill all tools::pskill(c(self$pid, child_pids), signal) }