Skip to content

Commit

Permalink
Ignore errors when getting node version
Browse files Browse the repository at this point in the history
  • Loading branch information
NHAS committed Jun 10, 2024
1 parent 7a96475 commit db65d41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ui/clustering.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ func clusterMembersUI(w http.ResponseWriter, r *http.Request) {
version, err := data.GetVersion(members[i].ID.String())
if err != nil {
log.Println("unable to get version: ", err)
w.WriteHeader(http.StatusInternalServerError)
return
version = "unknown"
}

status := "healthy" // full liveness
Expand Down

0 comments on commit db65d41

Please sign in to comment.