From ab0699044d80b4a4df8d5b87b2dbb91fe9ddd9a6 Mon Sep 17 00:00:00 2001 From: fangyincheng Date: Sat, 26 Oct 2019 16:54:36 +0800 Subject: [PATCH] Fix: group --- protocol/dubbo/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/protocol/dubbo/client.go b/protocol/dubbo/client.go index 03ab704676..ba74d86c0c 100644 --- a/protocol/dubbo/client.go +++ b/protocol/dubbo/client.go @@ -210,6 +210,7 @@ func (c *Client) call(ct CallType, request *Request, response *Response, callbac p.Service.Path = strings.TrimPrefix(request.svcUrl.Path, "/") p.Service.Interface = request.svcUrl.GetParam(constant.INTERFACE_KEY, "") p.Service.Version = request.svcUrl.GetParam(constant.VERSION_KEY, "") + p.Service.Group = request.svcUrl.GetParam(constant.GROUP_KEY, "") p.Service.Method = request.method p.Service.Timeout = c.opts.RequestTimeout p.Header.SerialID = byte(S_Dubbo)