Remove region requirement for Healing (#6031)

This commit is contained in:
Harshavardhana 2018-06-08 17:54:57 -07:00 committed by kannappanr
parent 3dc13323e5
commit 371349787f

View file

@ -474,7 +474,7 @@ func (a adminAPIHandlers) HealHandler(w http.ResponseWriter, r *http.Request) {
}
// Validate request signature.
adminAPIErr := checkAdminRequestAuthType(r, globalServerConfig.GetRegion())
adminAPIErr := checkAdminRequestAuthType(r, "")
if adminAPIErr != ErrNone {
writeErrorResponseJSON(w, adminAPIErr, r.URL)
return