зеркало из https://github.com/Azure/ARO-RP.git
Makes put and patch handlers return body again
This commit is contained in:
Родитель
c04c1fddd2
Коммит
37ee74c3e1
|
@ -237,14 +237,15 @@ func reply(log *logrus.Entry, w http.ResponseWriter, header http.Header, b []byt
|
|||
switch err := err.(type) {
|
||||
case *api.CloudError:
|
||||
api.WriteCloudError(w, err)
|
||||
return
|
||||
case statusCodeError:
|
||||
w.WriteHeader(int(err))
|
||||
default:
|
||||
log.Error(err)
|
||||
api.WriteError(w, http.StatusInternalServerError, api.CloudErrorCodeInternalServerError, "", "Internal server error.")
|
||||
}
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
if b != nil {
|
||||
w.Write(b)
|
||||
|
|
Загрузка…
Ссылка в новой задаче