You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by fl...@apache.org on 2020/02/13 02:23:29 UTC

[dubbo-go] branch develop updated (33f82cd -> d0d3ac1)

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

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


    from 33f82cd  Fix: https://github.com/AlexStocks/getty/issues/27
     new e0c29a5  add nacos configcenter
     new befdd61  fix:gofmt nacos configcenter
     new d72c385  fix:nacos test server addr
     new f7a267c  fix: Code normalization
     new 3fd3cf8  add config_center nacos client_test.go
     new a992d0b  Merge branch 'develop' into feature/nacos
     new c0b96f3  fix test case
     new e167f6c  fix code problems
     new b302272  fix test case
     new abc8d64  add comment
     new bd165e5  fix test case
     new a7b3fd8  fix review comment
     new b2584ae  fix code problems
     new f7c588d  fix review comment
     new f0a4d8f  fix review comment
     new d0d3ac1  Merge pull request #357 from zouyx/feature/nacos

The 1406 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:
 config_center/nacos/client.go                      | 217 +++++++++++++++++++++
 config_center/nacos/client_test.go                 |  31 +++
 .../zookeeper => config_center/nacos}/facade.go    |  68 ++++---
 config_center/{zookeeper => nacos}/factory.go      |  11 +-
 config_center/nacos/impl.go                        | 166 ++++++++++++++++
 config_center/nacos/impl_test.go                   | 117 +++++++++++
 config_center/nacos/listener.go                    |  62 ++++++
 7 files changed, 636 insertions(+), 36 deletions(-)
 create mode 100644 config_center/nacos/client.go
 create mode 100644 config_center/nacos/client_test.go
 copy {remoting/zookeeper => config_center/nacos}/facade.go (50%)
 copy config_center/{zookeeper => nacos}/factory.go (72%)
 create mode 100644 config_center/nacos/impl.go
 create mode 100644 config_center/nacos/impl_test.go
 create mode 100644 config_center/nacos/listener.go