You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by ir...@apache.org on 2021/02/07 02:08:04 UTC

[dubbo-go] branch 1.5 updated (9c3bd0e -> 6ad4ede)

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

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


    from 9c3bd0e  Merge pull request #1043 from xiaoliu10/replace_ci_icon
     new 49b71c0  fix: add health check blace list
     new a707429  fix: delete unused comment
     new 353391f  fmt file
     new b3eff92  fix: add remove from blacklist procedure when unregistry
     new 72e3dff  fix: change gost version to 1.10
     new e958d69  fix: add connCheck and fix refresh logic
     new f84b8fc  fix: use logger
     new f7073cf  fix: back to 1.9.5 gost
     new 1518966  fix: add test and fix fmt
     new e7a0e1c  Merge branch 'develop' into fix/healthCheck
     new 7d0f479  fix: solve merge conflict
     new 2831e35  fix: go fmt project
     new ae8b2ae  fix: go mod tidy
     new e2d57e7  fix: fix merge conflict
     new 0b7206b  fix: go mod tidy
     new 7438599  fix: change test file
     new daa66ea  Merge branch 'develop' into fix/healthCheck
     new 7dfa6be  fix: add health check test file
     new ac7acc7  fix: fix merge conflict
     new 8e92b2d  fix: change from trigger to event driven refresh cache
     new f466966  ticker refresh chain cache only when needed
     new c822cfa  fix: go fmt file
     new c1cc113  fix: add router change refresh cache logic
     new 482f9dc  feat: router change event driven chain cache refresh
     new c634ab2  fix: new base directory func add default chain
     new 4bce431  fix: base directory_test good
     new f5030fe  fix: fix test and add another gr to push notify
     new c5532cb  fix test notify bug
     new b812794  fix test notify bug
     new 5fe6029  fix: add notify test
     new a856678  fix: conflict
     new b5784d2  fix: fix err
     new e5bee95  fix: lint
     new 84bfb9d  fix: lint
     new a15546a  fix: lint
     new ed0b174  fix
     new be89b70  fix: chinglish
     new 833c829  fix
     new add1618  fix: conflict
     new 4f3d161  fix: delete logic of invocation get invoker
     new 2c2c35f  fix: split import block
     new 30e36d0  Merge branch 'develop' into fix/eventDrivenChainCache
     new 569bacd  Merge branch 'fix/eventDrivenChainCache' of https://github.com/LaurenceLiZhixin/dubbo-go into fix/eventDrivenChainCache
     new 25c1e44  fix: add log to show blacklist changes
     new e5d53ca  fix: change notify chain
     new edd99f5  fix: range
     new 93094ed  fix: cr
     new 6ad4ede  Merge pull request #976 from LaurenceLiZhixin/fix/eventDrivenChainCache

The 3642 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/cluster_impl/base_cluster_invoker.go       |  58 +++++++----
 cluster/cluster_impl/failback_cluster_test.go      |   7 ++
 cluster/cluster_impl/failfast_cluster_test.go      |   3 +
 cluster/cluster_impl/failsafe_cluster_test.go      |   4 +
 cluster/directory/base_directory.go                |   8 +-
 cluster/directory/base_directory_test.go           |   5 +-
 cluster/router/.gitkeep                            |   0
 cluster/router/chain.go                            |   2 +
 cluster/router/chain/chain.go                      |  60 ++++++-----
 cluster/router/chain/chain_test.go                 |   7 +-
 cluster/router/condition/app_router.go             |   5 +-
 cluster/router/condition/app_router_test.go        |  21 +++-
 cluster/router/condition/factory.go                |   8 +-
 cluster/router/condition/factory_test.go           | 110 +++++++++++++++-----
 cluster/router/condition/listenable_router.go      |  11 +-
 cluster/router/condition/router.go                 |   4 +-
 cluster/router/condition/router_test.go            |  15 ++-
 .../router/{health_checker.go => conn_checker.go}  |   8 +-
 .../conn_check_route.go}                           |  69 ++++++-------
 cluster/router/conncheck/conn_check_route_test.go  | 111 +++++++++++++++++++++
 .../factory.go => conncheck/conn_health_check.go}  |  22 ++--
 .../router/conncheck/conn_health_check_test.go     |  35 ++++---
 cluster/router/{tag => conncheck}/factory.go       |  25 ++---
 .../{healthcheck => conncheck}/factory_test.go     |   4 +-
 cluster/router/healthcheck/default_health_check.go |   4 -
 cluster/router/healthcheck/factory.go              |   4 +-
 cluster/router/healthcheck/health_check_route.go   |  12 +--
 .../router/healthcheck/health_check_route_test.go  |  22 ++--
 cluster/router/router.go                           |   2 +-
 cluster/router/tag/factory.go                      |   4 +-
 cluster/router/tag/factory_test.go                 |   7 +-
 cluster/router/tag/file.go                         |   4 +-
 cluster/router/tag/tag_router.go                   |   5 +-
 cluster/router/tag/tag_router_test.go              |  47 +++++++--
 common/constant/key.go                             |  12 ++-
 .../{health_checker.go => conn_checker.go}         |  15 +--
 config/reference_config.go                         |   2 -
 protocol/rpc_status.go                             |  95 +++++++++++++++++-
 registry/directory/directory.go                    |   1 +
 39 files changed, 607 insertions(+), 231 deletions(-)
 delete mode 100644 cluster/router/.gitkeep
 copy cluster/router/{health_checker.go => conn_checker.go} (80%)
 copy cluster/router/{healthcheck/health_check_route.go => conncheck/conn_check_route.go} (56%)
 create mode 100644 cluster/router/conncheck/conn_check_route_test.go
 copy cluster/router/{healthcheck/factory.go => conncheck/conn_health_check.go} (58%)
 copy common/extension/health_checker_test.go => cluster/router/conncheck/conn_health_check_test.go (58%)
 copy cluster/router/{tag => conncheck}/factory.go (58%)
 copy cluster/router/{healthcheck => conncheck}/factory_test.go (96%)
 copy common/extension/{health_checker.go => conn_checker.go} (70%)