Skip to content
Snippets Groups Projects
Commit e4ef3159 authored by xiangjianzhong's avatar xiangjianzhong
Browse files

[Fix]fix dubbo group issues#238

parent 3dc7610f
No related branches found
No related tags found
No related merge requests found
...@@ -210,6 +210,7 @@ func (c *Client) call(ct CallType, request *Request, response *Response, callbac ...@@ -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.Path = strings.TrimPrefix(request.svcUrl.Path, "/")
p.Service.Interface = request.svcUrl.GetParam(constant.INTERFACE_KEY, "") p.Service.Interface = request.svcUrl.GetParam(constant.INTERFACE_KEY, "")
p.Service.Version = request.svcUrl.GetParam(constant.VERSION_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.Method = request.method
p.Service.Timeout = c.opts.RequestTimeout p.Service.Timeout = c.opts.RequestTimeout
p.Header.SerialID = byte(S_Dubbo) p.Header.SerialID = byte(S_Dubbo)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment