1
0
mirror of https://github.com/minio/minio.git synced 2025-04-25 04:33:20 -04:00

Remove region requirement for Healing ()

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

@ -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