From 3d559fc94d4fa0f2fe888fb71da5a1bcd0f1fdc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Sat, 14 Jun 2025 02:52:31 +0200 Subject: [PATCH] Add wait time when container was in starting phase --- glue/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/glue/main.go b/glue/main.go index 0a0f5a2..077acf4 100644 --- a/glue/main.go +++ b/glue/main.go @@ -100,6 +100,9 @@ func (p *Processor) waitForApp() error { return err } if status.Status == "running" { + if i > 0 { + time.Sleep(sleepFor) // We wait a little bit more to make sure the container is fully started + } return nil }