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/08/09 02:44:11 UTC

[dubbo-go] branch develop updated (613cc6e -> 2aafdeb)

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

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


    from 613cc6e  Merge pull request #696 from apache/revert-665-featrue/tagRouter
     new 4681874  add scope and key support for condition router
     new 08a0877  enable digesting multiple router rule in router_config.yml
     new a41c36e  format the change
     new b501734  fix the test error
     new b33167b  enable service level router configuration
     new 740be76  resolve comment from zouyx
     new 95e863e  add default priority 0 for condition url which neither application nor service level router
     new 01910a0  reduce cognitive in base_directory.go
     new 96a3688  fix empty application configure always return true in base_directory setup
     new 5f02d53  added comment to file.go
     new 2aafdeb  Merge pull request #662 from williamfeng323/feature/application-level-router

The 2604 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:
 cluster/directory/base_directory.go          | 35 ++++++++---
 cluster/directory/base_directory_test.go     | 64 +++++++++++++++++---
 cluster/router/chain/chain_test.go           | 16 +++--
 cluster/router/condition/app_router_test.go  | 19 ++++--
 cluster/router/condition/file.go             | 45 +++++++++++++-
 cluster/router/condition/file_test.go        | 74 ++++++++++++++++++++++-
 cluster/router/condition/router.go           |  8 ++-
 cluster/router/condition/router_rule.go      |  5 +-
 cluster/router/condition/router_rule_test.go | 26 +++++++-
 cluster/router/condition/router_test.go      | 88 ++++++++++++++++++++++++++++
 cluster/router/tag/router_rule.go            |  2 +-
 common/constant/key.go                       |  9 ++-
 common/url.go                                |  2 +-
 common/yaml/yaml.go                          | 10 +++-
 config/router_config.go                      | 31 ++++++++--
 config/router_config_test.go                 |  8 +++
 config/service_config_test.go                |  2 +-
 config/testdata/router_config.yml            | 13 ++--
 config/testdata/router_config_error.yml      | 11 ++--
 config/testdata/router_multi_config.yml      | 16 +++++
 20 files changed, 429 insertions(+), 55 deletions(-)
 create mode 100644 cluster/router/condition/router_test.go
 create mode 100644 config/testdata/router_multi_config.yml