Skip to content

Commit

Permalink
add model status back
Browse files Browse the repository at this point in the history
  • Loading branch information
strangiato committed May 30, 2024
1 parent a12996d commit 0084c97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
if progressing == false and status_unknown == 0 and status_false == 0 then
health_status.status = "Healthy"
msg = "InferenceService is healthy."
elseif progressing == true or status_unknown >= 0 then
elseif progressing == true and status_unknown >= 0 then
health_status.status = "Progressing"
else
health_status.status = "Degraded"
Expand Down

0 comments on commit 0084c97

Please sign in to comment.