You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by zh...@apache.org on 2021/11/10 04:16:27 UTC

[dubbo-go] branch 3.0 updated (eb6010c -> 0c85c55)

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

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


    from eb6010c  Merge pull request #1568 from PhilYue/fix/consumer_check
     new 0b33524  register not use metadata configuration.
     new 5b74bf6  fix: registry param
     new 8a011a9  Merge remote-tracking branch 'upstream/3.0' into 20211102_nacos
     new 8f41bd1  fix: fix ns and group
     new 94434b4  fix: integrate test
     new 2ebc38b  Fix: integrate test
     new 001f95c  fix: url fmt
     new 0c85c55  Merge pull request #1565 from sanxun0325/20211102_nacos

The 8182 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 cluster/cluster/zoneaware/cluster_interceptor.go   |   2 +-
 cluster/cluster/zoneaware/cluster_invoker.go       |   4 +-
 cluster/cluster/zoneaware/cluster_invoker_test.go  |  12 +-
 cluster/router/v3router/router_chain.go            |   2 +-
 common/constant/key.go                             |  75 +++++----
 common/extension/service_discovery.go              |  11 +-
 common/rpc_service.go                              |  10 +-
 config/config_center_config.go                     |  13 +-
 config/metadata_report_config.go                   |  15 +-
 config/reference_config.go                         |   4 +-
 config/registry_config.go                          |  11 +-
 config/root_config.go                              |   3 +-
 config/service_config.go                           |  15 +-
 config_center/apollo/impl.go                       |   2 +
 config_center/apollo/mockDubbogo.yaml.json         |   1 +
 config_center/nacos/impl.go                        |  20 ++-
 config_center/nacos/listener.go                    |   4 +-
 config_center/zookeeper/impl.go                    |  10 +-
 metadata/mapping/metadata/service_name_mapping.go  |   2 +-
 metadata/report/etcd/report_test.go                |   8 +-
 metadata/report/nacos/report_test.go               |   4 +-
 metadata/service/exporter/configurable/exporter.go |   6 +-
 metadata/service/local/service.go                  |  11 +-
 metadata/service/local/service_proxy.go            |  11 +-
 metadata/service/local_service.go                  |   6 +-
 metrics/prometheus/reporter.go                     |   4 +-
 protocol/dubbo/dubbo_protocol.go                   |   4 +-
 protocol/dubbo3/dubbo3_protocol.go                 |   8 +-
 protocol/dubbo3/internal/helloworld_triple.pb.go   |   8 +-
 protocol/grpc/grpc_protocol.go                     |   4 +-
 protocol/jsonrpc/jsonrpc_protocol.go               |   4 +-
 registry/base_registry.go                          |  12 +-
 registry/directory/directory.go                    |   8 +-
 registry/etcdv3/registry_test.go                   |   6 +-
 registry/etcdv3/service_discovery.go               |  36 ++--
 .../metadata_service_url_params_customizer.go      |   4 +-
 .../event/protocol_ports_metadata_customizer.go    |   4 +-
 registry/file/service_discovery.go                 |   7 +-
 registry/kubernetes/registry_test.go               |   4 +-
 registry/mock_registry.go                          |   2 +-
 registry/nacos/listener.go                         |  14 +-
 registry/nacos/registry.go                         |  29 ++--
 registry/nacos/registry_test.go                    |  22 +--
 registry/nacos/service_discovery.go                |  24 ++-
 registry/nacos/service_discovery_test.go           | 182 ---------------------
 registry/protocol/protocol.go                      |   8 +-
 .../servicediscovery/service_discovery_registry.go |   3 +-
 registry/zookeeper/registry.go                     |   2 +
 registry/zookeeper/service_discovery.go            |  19 +--
 remoting/etcdv3/listener.go                        |   6 +-
 remoting/getty/getty_client.go                     |   2 +-
 remoting/getty/getty_server.go                     |   4 +-
 remoting/kubernetes/client.go                      |   2 +-
 remoting/kubernetes/facade_test.go                 |   2 +-
 remoting/nacos/builder.go                          |  14 +-
 remoting/nacos/builder_test.go                     |  10 +-
 remoting/zookeeper/client.go                       |   1 +
 remoting/zookeeper/listener.go                     |   8 +-
 58 files changed, 291 insertions(+), 438 deletions(-)
 create mode 100644 config_center/apollo/mockDubbogo.yaml.json
 delete mode 100644 registry/nacos/service_discovery_test.go