From 5739758c3a93d724500bd3ca1263d30f13361d3e Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 17 Feb 2023 11:11:28 +0100 Subject: [PATCH] fix: give more time to tear down state [ci skip] --- cli/app/undeploy.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/app/undeploy.go b/cli/app/undeploy.go index c54aff41..7244d47a 100644 --- a/cli/app/undeploy.go +++ b/cli/app/undeploy.go @@ -41,6 +41,7 @@ func pruneApp(c *cli.Context, cl *dockerClient.Client, app config.App) error { if len(services) == 0 { logrus.Debugf("%s undeployed, moving on with pruning logic", stackName) + time.Sleep(time.Second) // give runtime more time to tear down related state break }