You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by la...@apache.org on 2021/09/16 12:30:15 UTC

[dubbo-go] branch hsf-go-dependency updated: remove client metadata report (#1462)

This is an automated email from the ASF dual-hosted git repository.

laurence pushed a commit to branch hsf-go-dependency
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git


The following commit(s) were added to refs/heads/hsf-go-dependency by this push:
     new a01bf0b  remove  client metadata report (#1462)
a01bf0b is described below

commit a01bf0b4c571f1cccb4e4396c852881e3dc03ae4
Author: Laurence <45...@users.noreply.github.com>
AuthorDate: Thu Sep 16 20:29:14 2021 +0800

    remove  client metadata report (#1462)
    
    * fix: pb stub function bug
    
    * ftr: add gracefulshutdown callback
    
    * fix: remove client metadata report
---
 config/reference_config.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/reference_config.go b/config/reference_config.go
index d3730f0..176dd0f 100644
--- a/config/reference_config.go
+++ b/config/reference_config.go
@@ -198,7 +198,7 @@ func (c *ReferenceConfig) Refer(_ interface{}) {
 		c.invoker = cluster.Join(directory.NewStaticDirectory(invokers))
 	}
 	// publish consumer metadata
-	publishConsumerDefinition(cfgURL)
+	//publishConsumerDefinition(cfgURL)
 	// create proxy
 	if c.Async {
 		callback := GetCallback(c.id)