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/08/03 13:03:27 UTC

[dubbo-go] branch config-enhance updated (1ecc7eb -> 3a407f1)

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

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


    from 1ecc7eb  Config refactor (#1358)
     new 044d22c  config file enhance
     new 9388db1  set Koanf
     new 0c4d749  add:registry config
     new fa807b5  add:config center config
     new 639e01c  up:default config name
     new fa700d8  up:调整结构
     new 7b269ed  up:set config
     new d7f3e7c  add validate
     new c707ca7  add check genre
     new c2a0aa9  修改配置目录
     new 4513152  add registry config
     new 590b338  add protocol
     new ffc64cd  add provider config
     new 737ec30  add comments
     new 80c72a0  up:service config
     new 5e20c9f  修改解析tag
     new 02b535b    registries:
     new b7863d7  配置中心配置
     new 6118ef2  添加registry
     new aba8707  移除冗余代码
     new e4af389  fix: make new config struct runnable
     new c7767d6  merge
     new bb43b9f  up:配置文件
     new 48c615d  add:修改参数
     new e291fc1  add config
     new cf25e75  添加配置
     new d93df44  添加配置模块
     new ddca022  up:更新配置
     new 94d6aa8  更新配置
     new fadf717  修改方法
     new 40ae505  修改配置
     new 4338699  fix:注册失败问题
     new f1e8378  修改配置
     new 35ef293  add:配置中心模块代码
     new 6c511dd  添加注释
     new 8e32515  up:移除冗余代码
     new de72761  merge
     new 3a407f1  Merge pull request #1327 from zhaoyunxing92/config-enhance

The 7966 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/extension/config.go                         |  13 ++
 config/application_config.go                       |  33 ++--
 config/config_center_config.go                     |  64 ++++---
 config/config_loader.go                            |  33 +---
 config/config_loader_test.go                       |  29 +--
 config/consumer_config.go                          |  63 +++---
 config/interfaces/config.go                        |  13 ++
 .../version.go => config/logger_config.go          |  10 +-
 config/metadata_report_config.go                   |  10 +-
 config/method_config.go                            |  59 ++++--
 config/metric_config.go                            |   4 +
 config/network_config.go                           |   8 +
 config/protocol_config.go                          |  31 ++-
 ...down_config_test.go => protocol_config_test.go} |  44 +++--
 config/provider_config.go                          |  50 +++--
 config/reference_config.go                         | 190 ++++++++++--------
 config/registry_config.go                          |  35 ++--
 config/root_config.go                              | 199 ++++++++++++-------
 config/router_config.go                            |   7 +
 config/service_config.go                           | 213 ++++++++++++---------
 config/service_discovery_config.go                 |   4 +
 config/testdata/config/app/application.yaml        |  25 ++-
 config/testdata/config/protocol/application.yaml   |   6 +-
 config/testdata/config/service/hello_service.go    |   8 +-
 config/testdata/config/service/order_service.go    |   8 +-
 protocol/dubbo/dubbo_invoker.go                    |   9 +-
 protocol/dubbo/dubbo_protocol.go                   |  14 +-
 registry/base_registry.go                          |   7 +-
 registry/directory/directory.go                    |   2 +-
 registry/protocol/protocol.go                      |   2 +-
 remoting/getty/getty_client.go                     |  13 +-
 remoting/getty/getty_server.go                     |  10 +-
 32 files changed, 733 insertions(+), 483 deletions(-)
 create mode 100644 common/extension/config.go
 create mode 100644 config/interfaces/config.go
 copy test/integrate/dubbo/go-server/version.go => config/logger_config.go (88%)
 create mode 100644 config/network_config.go
 copy config/{graceful_shutdown_config_test.go => protocol_config_test.go} (52%)