From 96f1e81fed7d82ab27c93f310eea1a01cbee4540 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Mon, 21 Jul 2025 15:36:47 +0200 Subject: [PATCH] Decrease sleep time --- process/process.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/process.go b/process/process.go index 73204a16..4a0e18e5 100644 --- a/process/process.go +++ b/process/process.go @@ -808,7 +808,7 @@ func (p *process) stop(wait bool, reason string) error { // If the process in starting state, wait until the process has been started for { if p.getState() == stateStarting { - time.Sleep(500 * time.Millisecond) + time.Sleep(100 * time.Millisecond) continue }