d
This commit is contained in:
@@ -678,7 +678,11 @@ func ResponseForbidden403MultiLoginNotAllowed(w http.ResponseWriter) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func ResponseNotFound404UriNotExist(w http.ResponseWriter, r *http.Request) {
|
func ResponseNotFound404UriNotExist(w http.ResponseWriter, r *http.Request) {
|
||||||
log.Errorf("r.Method:%s, r.URL:%s", r.Method, r.URL)
|
if r.Method == "OPTIONS" {
|
||||||
|
ResponseStatusOK204NoContent(w)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
//log.Errorf("r.Method:%s, r.URL:%s", r.Method, r.URL)
|
||||||
errorMessage := ErrorMessage{"1", "the requested URI does not exist"}
|
errorMessage := ErrorMessage{"1", "the requested URI does not exist"}
|
||||||
errorResponse := ErrorResponse{errorMessage}
|
errorResponse := ErrorResponse{errorMessage}
|
||||||
ResponseWithJson(w, http.StatusNotFound, errorResponse)
|
ResponseWithJson(w, http.StatusNotFound, errorResponse)
|
||||||
|
|||||||
Reference in New Issue
Block a user