Remove only allowing certain methods

This commit is contained in:
Asim Aslam 2020-04-13 23:05:39 +01:00
parent f840a5003e
commit e515005083

View File

@ -100,11 +100,6 @@ func (h *rpcHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
return
}
if h.opts.Router == nil && r.Method != "GET" {
writeError(w, r, errors.MethodNotAllowed("go.micro.api", "method not allowed"))
return
}
ct := r.Header.Get("Content-Type")
// Strip charset from Content-Type (like `application/json; charset=UTF-8`)