From e4ef31593067f1ab378eda9fce3f46b58d8385ab Mon Sep 17 00:00:00 2001
From: xiangjianzhong <xiangjianzhong@cvte.com>
Date: Tue, 22 Oct 2019 12:13:14 +0800
Subject: [PATCH] [Fix]fix dubbo group issues#238

---
 protocol/dubbo/client.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/protocol/dubbo/client.go b/protocol/dubbo/client.go
index 03ab70467..ba74d86c0 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)
-- 
GitLab