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/07/26 08:28:52 UTC

[dubbo-go] 02/04: Merge remote-tracking branch 'apache/develop' into refact-seri

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

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

commit 0e2de75263320719dec9faba2cf341ecd87e17b9
Merge: 6b93bbc ab31c0d
Author: fangyincheng <fa...@sina.com>
AuthorDate: Sat Jun 27 18:31:04 2020 +0800

    Merge remote-tracking branch 'apache/develop' into refact-seri

 cluster/directory/base_directory.go               |  4 +-
 cluster/router/chain/chain.go                     | 30 +++++++----
 cluster/router/chain/chain_test.go                |  4 +-
 cluster/router/{tag/factory_test.go => chan.go}   | 26 +++------
 cluster/router/condition/factory.go               | 14 ++---
 cluster/router/condition/factory_test.go          | 50 ++++++++---------
 cluster/router/healthcheck/factory.go             |  6 +--
 cluster/router/healthcheck/health_check_route.go  |  2 +-
 cluster/router/router.go                          | 32 +++++------
 cluster/router/tag/factory.go                     |  8 +--
 cluster/router/tag/factory_test.go                |  2 +-
 common/config/environment.go                      |  2 +-
 common/config/environment_test.go                 |  6 +--
 common/extension/health_checker.go                |  2 +-
 common/extension/health_checker_test.go           |  2 +-
 common/extension/metrics_test.go                  |  1 +
 common/extension/registry.go                      |  2 +-
 common/extension/rest_client.go                   |  2 +-
 common/extension/router_factory.go                | 14 ++---
 common/extension/service_discovery.go             |  2 +-
 common/proxy/proxy_factory/default.go             |  2 +-
 common/proxy/proxy_factory/default_test.go        |  6 +--
 common/proxy/proxy_test.go                        |  4 +-
 common/rpc_service.go                             |  1 -
 common/rpc_service_test.go                        | 54 +++++++++++--------
 common/url.go                                     |  7 +--
 common/url_test.go                                | 52 ++++++++++--------
 common/yaml/yaml_test.go                          |  2 +-
 config_center/apollo/impl_test.go                 | 10 ++--
 config_center/configuration_listener.go           |  1 +
 config_center/configurator/override.go            | 66 ++++++++++++-----------
 config_center/configurator/override_test.go       | 37 +++++++------
 config_center/mock_dynamic_config.go              | 15 ++++--
 config_center/nacos/client_test.go                |  6 +--
 config_center/nacos/impl_test.go                  | 12 ++---
 config_center/nacos/listener.go                   |  2 +-
 config_center/parser/configuration_parser_test.go |  6 +--
 config_center/zookeeper/impl_test.go              | 41 +++++++-------
 go.mod                                            | 10 ++--
 go.sum                                            | 48 ++++++++++++-----
 protocol/invocation/rpcinvocation.go              |  5 ++
 registry/base_configuration_listener.go           | 12 ++---
 registry/consul/listener.go                       |  2 +
 registry/consul/registry.go                       | 11 ++--
 registry/directory/directory.go                   |  2 +
 registry/etcdv3/listener.go                       |  7 ++-
 registry/etcdv3/registry.go                       |  6 +++
 registry/event.go                                 |  2 +-
 registry/event_listener.go                        |  1 +
 registry/kubernetes/listener.go                   |  8 ++-
 registry/kubernetes/registry.go                   | 10 ++++
 registry/mock_registry.go                         | 16 +++---
 registry/nacos/listener.go                        |  5 +-
 registry/nacos/registry.go                        |  6 ++-
 registry/nacos/service_discovery.go               |  7 +--
 registry/nacos/service_discovery_test.go          |  2 +-
 registry/protocol/protocol.go                     |  7 +++
 registry/registry.go                              |  5 +-
 registry/service_discovery.go                     |  3 +-
 registry/service_instance.go                      |  1 +
 registry/zookeeper/registry.go                    | 13 ++++-
 61 files changed, 421 insertions(+), 303 deletions(-)