fix(edge-stacks): take not-found stack as removed EE-6758 (#11248)

This commit is contained in:
cmeng
2024-03-01 11:50:20 +13:00
committed by GitHub
parent 88185d7f6d
commit 385fd95779
3 changed files with 14 additions and 1 deletions
@@ -127,6 +127,12 @@ func (wrapper *PluginWrapper) WaitForStatus(ctx context.Context, name string, st
log.Debug().
Str("project_name", name).
Msg("no output from docker compose ps")
if status == libstack.StatusRemoved {
errorMessageCh <- ""
return
}
continue
}