Add wait time when container was in starting phase
Some checks failed
Unittests / unittests (push) Successful in 1m6s
Unittests / deploy-dev (push) Successful in 54s
Release / deploy-production (release) Failing after 1m6s

This commit is contained in:
Adam Štrauch 2025-06-14 02:52:31 +02:00
parent 0bc10b7154
commit 3d559fc94d
Signed by: cx
GPG key ID: 7262DAFE292BCE20

View file

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