From 2fafc81af7250a334f50b1c76a454e2ed8f25b02 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 13 Apr 2020 23:05:39 +0100 Subject: [PATCH] Remove only allowing certain methods --- rpc.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/rpc.go b/rpc.go index 58493c4..d9ff31a 100644 --- a/rpc.go +++ b/rpc.go @@ -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`)