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 2022/05/22 02:36:33 UTC

[dubbo-go-pixiu] branch develop updated (bf77bc37 -> a274007a)

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-pixiu.git


    from bf77bc37 Merge pull request #422 from maxingg/feature/trace
     new 3812f96c health check
     new 58561a89 fix comments
     new 34ab3edc Merge branch 'feature-health-check' into feature-health-check-2
     new 060e5ef5 health check
     new ce5d79db health check
     new 01952752 health check
     new 3057b008 Merge branch 'develop' into feature-health-check-2
     new 3d1f2381 Merge branch 'develop' into feature-health-check-2
     new 4ee6f67f fix ci
     new 52262f58 fix ci
     new b5616d2a fix ci
     new 985541eb fix ci
     new a274007a Merge pull request #421 from ztelur/feature-health-check-2

The 1701 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:
 .github/workflows/go.sum                           |   1 -
 .../router_manager.go => cluster/cluster.go}       |  45 ++--
 pkg/cluster/healthcheck/healthcheck.go             | 288 +++++++++++++++++++++
 .../RoundTripper.go => cluster/healthcheck/tcp.go} |  25 +-
 pkg/cluster/loadbalancer/load_balancer.go          |   2 +-
 .../loadbalancer/rand/load_balancer_rand.go        |   4 +-
 pkg/cluster/loadbalancer/roundrobin/round_robin.go |   7 +-
 pkg/config/config_load_test.go                     |   2 +-
 pkg/config/xds/apiclient/grpc.go                   |   4 +-
 pkg/config/xds/apiclient/grpc_test.go              |   6 +-
 pkg/config/xds/cds.go                              |   6 +-
 pkg/config/xds/cds_test.go                         |   9 +-
 pkg/config/xds/xds_test.go                         |   4 +-
 pkg/model/bootstrap.go                             |  10 +-
 pkg/model/cluster.go                               |  38 ++-
 pkg/model/health.go                                |  18 +-
 pkg/server/cluster_manager.go                      |  57 +++-
 pkg/server/cluster_manager_test.go                 |   4 +-
 pkg/server/controls/controls.go                    |   6 +-
 pkg/server/controls/mocks/mocks.go                 |   8 +-
 samples/http/simple/pixiu/conf.yaml                |   6 +
 21 files changed, 456 insertions(+), 94 deletions(-)
 delete mode 100644 .github/workflows/go.sum
 copy pkg/{server/router_manager.go => cluster/cluster.go} (52%)
 create mode 100644 pkg/cluster/healthcheck/healthcheck.go
 copy pkg/{common/grpc/RoundTripper.go => cluster/healthcheck/tcp.go} (66%)