Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2022-03-21 15:41:40 +03:00
parent cd47eab010
commit 1cc8b37503
1 changed files with 9 additions and 6 deletions

View File

@ -184,6 +184,7 @@ func (h *httpServer) NewHandler(handler interface{}, opts ...server.HandlerOptio
tp := reflect.TypeOf(handler)
/*
if len(options.Metadata) == 0 {
if h.registerRPC {
h.opts.Logger.Infof(h.opts.Context, "register rpc handler for http.MethodPost %s /%s", hn, hn)
@ -192,6 +193,8 @@ func (h *httpServer) NewHandler(handler interface{}, opts ...server.HandlerOptio
}
}
}
*/
for hn, md := range options.Metadata {
var method reflect.Method
mname := hn[strings.Index(hn, ".")+1:]