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/03/09 15:43:18 UTC

[dubbo-go] branch master updated (08d8cb9 -> a7ae33f)

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

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


    from 08d8cb9  Merge pull request #379 from Isaac-Zhang/develop
     add fab640c  Mod: update change list
     add 981895c  Imp: trace error of getGettyRpcClient(protocol
     add 8e53ac1  Mod: update getty version
     add 039e12f  Update hessian2 version
     add c76c856  Imp: make sure that client request sequence is an odd number
     add 989c001  Merge pull request #384 from divebomb/develop
     add 47beb73  Mod: release 1.3
     add 1147a82  Del: Stargazers
     add 5b13a70  Fix: LLICENSE & NOTICE
     add 65e436f  Fix: https://github.com/AlexStocks/getty/issues/27
     add 7fcb34e  add zk register code
     add 5f82281  Merge pull request #355 from pantianying/fix_zkproblemto1.3
     add 0d4ba66  Mod: CHANGE.md
     add 5170808  Mod: README.md & licence
     add a0a21d0  Fix: do not release conn when can not get response
     add 0b9ba3f  Merge pull request #360 from divebomb/1.3
     add 95065e5  Merge pull request #358 from pantianying/addRlockForDubboInvoker
     add 082cc62  Merge pull request #364 from fangyincheng/1.3
     add aeb4057  Fix: issue 380
     add c09e2f2  Add: issue 380 ut
     add 00ebddd  Mod: readme
     add c96bb8f  merge 1.3
     add 008a1f3  Merge pull request #390 from fangyincheng/devv
     add df90d9b  add healthcheck router
     add 65ff41c  add comments
     add 132ee77  fix ut
     add 7368392  add apache license
     add 3d7d50f  fix fmt failure
     add 0fc5ceb  move healthcheck router to healthcheck dir
     add 9ae15f1  fix comment
     add 44b6f9f  fix comment
     add 9674573  mv constant val to constant package
     add 91830f5  add some comments
     add ab850a4  Merge pull request #389 from CodingSinger/HEALTH_CHECK
     add f113593  if zkJar not exist,it will download it.
     add 62840ac  modify
     add a7ae33f  Merge pull request #393 from Patrick0308/modify-ut-shell

No new revisions were added by this update.

Summary of changes:
 CHANGE.md                                          | 116 +++++++++------
 README.md                                          |  15 +-
 README_CN.md                                       |  14 +-
 before_ut.bat                                      |  20 ++-
 before_ut.sh                                       |  18 ++-
 .../{loadbalance.go => router/health_checker.go}   |  10 +-
 cluster/router/healthcheck/default_health_check.go | 117 +++++++++++++++
 .../healthcheck/default_health_check_test.go       | 157 +++++++++++++++++++++
 .../router/healthcheck/factory.go                  |  28 ++--
 .../router/healthcheck/factory_test.go             |  40 ++++--
 cluster/router/healthcheck/health_check_route.go   |  86 +++++++++++
 .../router/healthcheck/health_check_route_test.go  | 135 ++++++++++++++++++
 common/constant/key.go                             |  24 ++++
 .../extension/{registry.go => health_checker.go}   |  21 ++-
 .../{metrics_test.go => health_checker_test.go}    |  26 ++--
 go.mod                                             |   6 +-
 go.sum                                             |  11 +-
 protocol/dubbo/client.go                           |  10 ++
 protocol/dubbo/listener.go                         |   1 +
 protocol/dubbo/pool.go                             |   5 +-
 .../protoc-gen-dubbo/examples/helloworld.proto     |  29 ++--
 protocol/rpc_status.go                             |  16 ++-
 protocol/rpc_status_test.go                        |  27 +---
 registry/directory/directory.go                    |   2 +-
 24 files changed, 773 insertions(+), 161 deletions(-)
 copy cluster/{loadbalance.go => router/health_checker.go} (79%)
 create mode 100644 cluster/router/healthcheck/default_health_check.go
 create mode 100644 cluster/router/healthcheck/default_health_check_test.go
 copy config_center/configurator/mock.go => cluster/router/healthcheck/factory.go (59%)
 copy filter/filter_impl/echo_filter_test.go => cluster/router/healthcheck/factory_test.go (61%)
 create mode 100644 cluster/router/healthcheck/health_check_route.go
 create mode 100644 cluster/router/healthcheck/health_check_route_test.go
 copy common/extension/{registry.go => health_checker.go} (60%)
 copy common/extension/{metrics_test.go => health_checker_test.go} (66%)