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

[dubbo-go] branch feature/dubbo-2.7.5 updated (024f7b2 -> 5a12137)

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

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


    from 024f7b2  Merge pull request #601 from dubbo-x/zk_client
     new 3d0b1c9  modify metareport interface
     new b8f5346  fix bug
     new b2a04fd  consul metadata report
     new 117f85f  zookeeper metadata report
     new f1576d1  fix
     new 242e9f2  fix
     new 81a458c  import sort
     new 404cd00  consul metadata report unit test
     new f004237  zookeeper metadata report unit test
     new ecf7fa1  go fmt
     new 44dbdfe  global var for empty slice
     new f440a31  fix
     new e030e25  remove panic
     new a601a33  fix bug
     new f00d104  rename consul agent for test
     new a23c6d2  fix
     new 7248544  fix typo
     new f66dda8  update zk library version
     new 302dbc2  simplify and comment
     new 5a12137  Merge pull request #633 from dubbo-x/metadata

The 2144 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:
 .gitignore                                         |   4 +-
 before_ut.bat                                      |   5 +-
 before_ut.sh                                       |   9 +-
 go.mod                                             |   2 +-
 go.sum                                             |   4 +-
 metadata/report/consul/report.go                   | 125 ++++++++++++++++
 metadata/report/consul/report_test.go              | 165 ++++++++++++++++++++
 metadata/report/delegate/delegate_report.go        |  20 ++-
 metadata/report/delegate/delegate_report_test.go   |   4 +-
 metadata/report/factory/report_factory.go          |   4 -
 metadata/report/nacos/report.go                    |  75 ++++------
 metadata/report/nacos/report_test.go               |  17 ++-
 metadata/report/report.go                          |  35 ++++-
 metadata/report/zookeeper/report.go                | 133 +++++++++++++++++
 metadata/report/zookeeper/report_test.go           | 166 +++++++++++++++++++++
 metadata/service/remote/service_test.go            |  34 +++--
 registry/consul/utils_test.go                      |  55 ++-----
 .../consul/test_agent.go                           |  54 ++++---
 .../consul/test_agent_test.go                      |   9 +-
 remoting/zookeeper/client.go                       |   8 +-
 20 files changed, 760 insertions(+), 168 deletions(-)
 create mode 100644 metadata/report/consul/report.go
 create mode 100644 metadata/report/consul/report_test.go
 create mode 100644 metadata/report/zookeeper/report.go
 create mode 100644 metadata/report/zookeeper/report_test.go
 copy cluster/cluster_impl/failfast_cluster_invoker.go => remoting/consul/test_agent.go (51%)
 copy config/metric_config_test.go => remoting/consul/test_agent_test.go (85%)