From 0656f3b40045452fb9ffd4191cb6ef19600c93f2 Mon Sep 17 00:00:00 2001 From: Vasiliy Tolstov Date: Wed, 15 Apr 2020 17:50:51 +0300 Subject: [PATCH] api/router/registry: extract path based parameters from url to req (#1530) * api/router/registry: extract path based parameters from url to req * api/handler/rpc: fix empty body request parsing * bundle grpc-gateway util funcs Signed-off-by: Vasiliy Tolstov --- rpc.go | 1 - 1 file changed, 1 deletion(-) diff --git a/rpc.go b/rpc.go index 16e34d0..64f0cf4 100644 --- a/rpc.go +++ b/rpc.go @@ -208,7 +208,6 @@ func (h *rpcHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { &request, client.WithContentType(ct), ) - // make the call if err := c.Call(cx, req, &response, client.WithSelectOption(so)); err != nil { writeError(w, r, err)