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 4105b65 commit 99354fdCopy full SHA for 99354fd
internal/orchestrator/helpers.go
@@ -44,11 +44,12 @@ type AppStatusInfo struct {
44
// For app that have at least 1 dependency, we calculate the overall state
45
// as follow:
46
//
47
-// running: all running
48
-// stopped: all stopped
49
-// failed: at least one failed
50
-// stopped: at least one stopped
51
-// starting: at least one starting
+// running: all running
+// stopped: all stopped
+// failed: at least one failed
+// stopping: at least one stopping
+// stopped: at least one stopped
52
+// starting: at least one starting
53
func parseAppStatus(containers []container.Summary) []AppStatusInfo {
54
apps := make([]AppStatusInfo, 0, len(containers))
55
appsStatusMap := make(map[string][]Status)
0 commit comments