We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12a78db commit a716a9dCopy full SHA for a716a9d
internal/orchestrator/helpers.go
@@ -93,6 +93,10 @@ func parseAppStatus(containers []container.Summary) []AppStatusInfo {
93
appendResult(appPath, StatusStopping)
94
continue
95
}
96
+ if slices.ContainsFunc(s, func(v Status) bool { return v == StatusStopped }) {
97
+ appendResult(appPath, StatusStopping)
98
+ continue
99
+ }
100
if slices.ContainsFunc(s, func(v Status) bool { return v == StatusStarting }) {
101
appendResult(appPath, StatusStarting)
102
0 commit comments