Skip to content

Commit

Permalink
Uncommented the relaxed check.
Browse files Browse the repository at this point in the history
  • Loading branch information
c0desurfer committed Jul 3, 2019
1 parent aa1e8b7 commit fe51763
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions daemon/client/handlers/major.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ func HandleMajorChecks(daemonType string, w http.ResponseWriter, r *http.Request
}

// check notready working nodes but only alert if no more capacity is available
//if err := checks.CheckOcGetNodesRelaxed(); err != nil {
// errors = append(errors, err.Error())
//}
if err := checks.CheckOcGetNodesRelaxed(); err != nil {
errors = append(errors, err.Error())
}

if err := checks.CheckEtcdHealth(etcdIps, ""); err != nil {
errors = append(errors, err.Error())
Expand Down

0 comments on commit fe51763

Please sign in to comment.