Adding return statement after error response in the lastest commit to verify location constraint (#1348)

master
karthic rao 9 years ago committed by Harshavardhana
parent 4cf73caf02
commit 560c3bd153
  1. 1
      bucket-handlers.go

@ -487,6 +487,7 @@ func (api objectAPIHandlers) PutBucketHandler(w http.ResponseWriter, r *http.Req
errCode := isValidLocationContraint(r.Body, serverConfig.GetRegion())
if errCode != ErrNone {
writeErrorResponse(w, r, errCode, r.URL.Path)
return
}
// Make bucket.
err := api.ObjectAPI.MakeBucket(bucket)

Loading…
Cancel
Save