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 2020/09/12 10:06:45 UTC

[dubbo-go] branch develop updated (3428629 -> 282a8ad)

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 3428629  Merge pull request #752 from sdttttt/sdttttt-patch-1
     new ce86820  add file service discovery config file
     new 678f505  file system service discovery perfect
     new 112e1a9  TestNewFileSystemServiceDiscoveryAndDestroy add prepareData()
     new f3ce3a3  Merge branch 'develop' into feature/file_service_discovery
     new 3ecffc7  update config_center file test
     new 934ad5c  remove callback add watcher error print warn
     new a94ead8  sort import and change dynamic_configuration.go#RemoveConfig comment
     new 78611fd  fix impl_test mockDataListener use
     new fa65371  format else and length
     new 2297303  registry string from constant
     new f818c7e  delete not used map
     new 282a8ad  Merge pull request #732 from DogBaoBao/feature/file_service_discovery

The 2864 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                             |   4 +
 common/url.go                                      |  11 +
 config_center/apollo/impl.go                       |   1 +
 ...nfigurator.go => base_dynamic_configuration.go} |  13 +-
 config_center/dynamic_configuration.go             |   3 +
 config_center/{nacos => file}/factory.go           |  22 +-
 config_center/file/impl.go                         | 312 +++++++++++++++++++++
 config_center/file/impl_test.go                    | 156 +++++++++++
 config_center/file/listener.go                     | 162 +++++++++++
 config_center/mock_dynamic_config.go               |   1 +
 config_center/nacos/impl.go                        |   1 +
 config_center/zookeeper/impl.go                    |   1 +
 go.mod                                             |   1 +
 .../report_factory.go => registry/file/listener.go |  16 +-
 registry/file/service_discovery.go                 | 285 +++++++++++++++++++
 registry/file/service_discovery_test.go            |  89 ++++++
 16 files changed, 1055 insertions(+), 23 deletions(-)
 copy config_center/{configurator.go => base_dynamic_configuration.go} (78%)
 copy config_center/{nacos => file}/factory.go (68%)
 create mode 100644 config_center/file/impl.go
 create mode 100644 config_center/file/impl_test.go
 create mode 100644 config_center/file/listener.go
 copy metadata/report/factory/report_factory.go => registry/file/listener.go (69%)
 create mode 100644 registry/file/service_discovery.go
 create mode 100644 registry/file/service_discovery_test.go