Skip to content

Commit

Permalink
Disabled gstatus check because of wrong python exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
u220374 committed Sep 15, 2017
1 parent 40ab9da commit b4c0564
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 @@ -67,9 +67,9 @@ func HandleMajorChecks(daemonType string, w http.ResponseWriter, r *http.Request
isGlusterServer := os.Getenv("IS_GLUSTER_SERVER")

if isGlusterServer == "true" {
if err := checks.CheckGlusterStatus(); err != nil {
errors = append(errors, err.Error())
}
//if err := checks.CheckGlusterStatus(); err != nil {
// errors = append(errors, err.Error())
//}

if err := checks.CheckLVPoolSizes(90); err != nil {
errors = append(errors, err.Error())
Expand Down

0 comments on commit b4c0564

Please sign in to comment.