Skip to content

Commit

Permalink
minor - user "=" syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
dselivanov committed Apr 14, 2024
1 parent 71feba8 commit f968e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/BackendRserve.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit f968e31

Please sign in to comment.