You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2019/11/15 09:06:32 UTC

[dubbo-go] branch develop updated (8f2c625 -> d82e97f)

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

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


    from 8f2c625  Merge pull request #253 from flycash/bug/negativeWaitGroupCounter
     new c29a9e1  [Fix]fix dubbo group issues#238
     new 5473e10  Merge pull request #243 from apollo-go/feature/groupfix
     new 90ffa3f  Merge branch 'develop' of https://github.com/apache/dubbo-go into develop
     new 0fd2f8d  stash
     new dc06493  Merge branch 'feat-apollo' into feature/apollo
     new 93175c7  update apollo
     new cc6ef34  update apollo
     new e26908a  update apollo
     new a995b89  update apollo
     new acad6b4  format code and delete useless package
     new e102328  update apollo
     new 82ade28  format code
     new 1b28063  update apollo
     new a1cdbde  format code
     new 6c82575  format code
     new 7a2fdf0  fix review problems
     new 8f9408b  fix review problems
     new 9791639  update apollo config
     new 41ece4f  fix review problems
     new a2d059e  fix review problems
     new 2bbf550  fix review problems
     new 499ca96  update agollo
     new ed580c6  fix review problems
     new 1a51465  fix review problems
     new 8dc624a  fix review problems
     new c1c0284  add testdata in config
     new 379deef  add testdata in config
     new a4c46da  add testdata in config
     new 0350578  add testdata in config
     new 5757daa  fix cases
     new d82e97f  Merge pull request #250 from zouyx/feature/apollo

The 1076 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:
 common/constant/key.go                             |   3 +
 config/base_config.go                              |   2 +-
 config/base_config_test.go                         |   1 +
 config/config_center_config.go                     |  14 ++
 config/testdata/consumer_config.properties         |  52 ++++
 .../consumer_config_with_configcenter_apollo.yml   |  24 ++
 config/testdata/provider_config.properties         |  58 +++++
 .../apollo/factory.go                              |  29 ++-
 config_center/apollo/impl.go                       | 176 ++++++++++++++
 config_center/apollo/impl_test.go                  | 262 +++++++++++++++++++++
 config_center/apollo/listener.go                   |  59 +++++
 config_center/zookeeper/factory.go                 |  12 +-
 go.mod                                             |   1 +
 go.sum                                             |   3 +
 14 files changed, 672 insertions(+), 24 deletions(-)
 create mode 100644 config/testdata/consumer_config.properties
 create mode 100644 config/testdata/consumer_config_with_configcenter_apollo.yml
 create mode 100644 config/testdata/provider_config.properties
 copy cluster/cluster_impl/forking_cluster.go => config_center/apollo/factory.go (55%)
 create mode 100644 config_center/apollo/impl.go
 create mode 100644 config_center/apollo/impl_test.go
 create mode 100644 config_center/apollo/listener.go