You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by fa...@apache.org on 2020/08/09 19:34:34 UTC

[dubbo-go] branch refact-seri updated (9a26d03 -> 6338a82)

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

fangyc pushed a change to branch refact-seri
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git.


    from 9a26d03  resolve conflicts
     add da4225e  Fix kubernetes ut
     add 79ade24  FMT k8s pkg
     add 269714a  Merge pull request #693 from sxllwx/fix_k8s_ut
     add 05d541b  update readme
     add 9b73313  Modify README_CN
     add 55c84cd  Modify README_CN.md
     add abcc4df  Merge pull request #683 from QMHTMY/master
     add 7ad26fd  try to fix zk problem
     add 53587ec  try to fix ut failed
     add 7a88bab  change the default value to 15m
     add c33f4ea  change the default value to 15min
     add 9b4745f  fix comments
     add c4fbd60  Merge pull request #692 from wenxuwan/master
     add 65b215a  Merge pull request #18 from apache/develop
     add 0ef7765  unregister instance when registry destroy
     add 2d8224e  fix review comment
     add 0b5e2f4  Merge pull request #689 from lzp0412/develop
     add 2e01ed5  Ftr: add dynamic tag router
     add 71095a3  Add: add unit tests for tag router
     add 4ef21cb  Add: add ip address match function
     add 891ec6c  Add: add listener for tag router
     add 0d56ab0  Merge branch 'develop' into featrue/tagRouter
     add 8580ad0  Mod: update tag router unit test
     add 70c01a5  Add: add unit test for dynamic tag
     add a31a4e2  Add: add zk jar for tag test
     add 5e377f4  Merge pull request #665 from watermelo/featrue/tagRouter
     add 2e96585  refactor config center
     add 73e7bdd  refactor config center
     add d5a491e  add case for this feature
     add 3e9f57a  refactor config center
     add d32cbdb  fix review comment
     add e0dd74e  fix review comment
     add 8e6d2ac  fix review comment
     add 3bc2938  fix review comment
     add eb919e1  fix review comment
     add bcffde9  fix travis
     add 6300a24  fix travis
     add 0a98a20  Merge pull request #687 from zouyx/feature/optimizeRemotesConfiguration
     add 603ffc1  Revert "Ftr: dynamic tag router"
     add 613cc6e  Merge pull request #696 from apache/revert-665-featrue/tagRouter
     add ee5e94f  Merge remote-tracking branch 'apache/develop' into refact-seri
     add 6338a82  Fix: fix

No new revisions were added by this update.

Summary of changes:
 common/constant/default.go             |   1 +
 common/constant/key.go                 |   1 +
 config/base_config.go                  |  72 -------
 config/base_config_test.go             |  19 --
 config/config_center_config.go         |  99 ++++++++++
 config/config_center_config_test.go    |  93 +++++++++
 config/consumer_config.go              |  17 +-
 config/provider_config.go              |   5 +-
 config/registry_config.go              |   2 +
 config/remote_config.go                |  18 ++
 config_center/nacos/client.go          |   1 -
 go.mod                                 |   5 +-
 go.sum                                 |   6 +-
 protocol/dubbo/dubbo_codec.go          | 135 +++----------
 protocol/dubbo/dubbo_protocol_test.go  |  39 ++--
 protocol/dubbo/impl/codec.go           |  42 ++---
 protocol/dubbo/impl/const.go           |   9 +
 protocol/dubbo/impl/package.go         |   4 +-
 registry/nacos/registry.go             |  39 ++++
 registry/nacos/service_discovery.go    |  21 ++-
 registry/zookeeper/registry.go         |   2 +
 remoting/exchange_client.go            |   2 +-
 remoting/getty/dubbo_codec_for_test.go | 335 +--------------------------------
 remoting/getty/readwriter.go           |   6 -
 remoting/kubernetes/listener_test.go   |   2 +
 remoting/zookeeper/listener.go         |  45 ++++-
 26 files changed, 410 insertions(+), 610 deletions(-)
 create mode 100644 config/config_center_config_test.go