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)