We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 400e581 commit a236221Copy full SHA for a236221
pkg/model/application_live_state.go
@@ -166,6 +166,8 @@ func (s *ApplicationLiveStateSnapshot) DetermineApplicationHealthStatus() {
166
}
167
168
169
+ s.HealthStatus = ApplicationLiveStateSnapshot_HEALTHY
170
+
171
// prioritize unhealthy over unknown when these two statuses are both set.
172
if unhealthy {
173
s.HealthStatus = ApplicationLiveStateSnapshot_UNHEALTHY
@@ -176,6 +178,4 @@ func (s *ApplicationLiveStateSnapshot) DetermineApplicationHealthStatus() {
176
178
s.HealthStatus = ApplicationLiveStateSnapshot_UNKNOWN
177
179
return
180
-
- s.HealthStatus = ApplicationLiveStateSnapshot_HEALTHY
181
0 commit comments