File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ func parseAppStatus(containers []container.Summary) []AppStatusInfo {
8484 }
8585
8686 // ...else we have multiple different status we calculate the status
87- // among the possible left: {failed, stopping, starting}
87+ // among the possible left: {failed, stopping, stopped, starting}
8888 if slices .ContainsFunc (s , func (v Status ) bool { return v == StatusFailed }) {
8989 appendResult (appPath , StatusFailed )
9090 continue
@@ -93,6 +93,10 @@ func parseAppStatus(containers []container.Summary) []AppStatusInfo {
9393 appendResult (appPath , StatusStopping )
9494 continue
9595 }
96+ if slices .ContainsFunc (s , func (v Status ) bool { return v == StatusStopped }) {
97+ appendResult (appPath , StatusStopping )
98+ continue
99+ }
96100 if slices .ContainsFunc (s , func (v Status ) bool { return v == StatusStarting }) {
97101 appendResult (appPath , StatusStarting )
98102 continue
You can’t perform that action at this time.
0 commit comments