1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-21 06:19:41 +02:00

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

This commit is contained in:
cmeng 2024-03-01 11:50:27 +13:00 committed by GitHub
parent a7eaa0f3fa
commit a43454076b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 1 deletions

View file

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