Decrease sleep time

This commit is contained in:
Ingo Oppermann 2025-07-21 15:36:47 +02:00
parent 17006edeb6
commit 96f1e81fed
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E

View File

@ -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
}