Alanxtl commented on code in PR #3059:
URL: https://github.com/apache/dubbo-go/pull/3059#discussion_r2447908495


##########
config_center/zookeeper/impl.go:
##########
@@ -134,6 +134,10 @@ func (c *zookeeperDynamicConfiguration) GetProperties(key 
string, opts ...config
                key = c.GetURL().GetParam(constant.ConfigNamespaceKey, 
config_center.DefaultGroup) + "/" + key
        }
        content, _, err := c.client.GetContent(c.rootPath + "/" + key)
+       if perrors.Is(err, zk.ErrNoNode) {
+               logger.Warnf("query rule fail,key=%s,err=%v", key, err)

Review Comment:
   ```suggestion
                logger.Warnf("query rule fail, key=%s, err=%v", key, err)
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to