You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by la...@apache.org on 2022/01/17 15:11:54 UTC

[dubbo-go] branch 3.0 updated (78b6c8a -> 7168e8e)

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

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


    from 78b6c8a  Merge pull request #1693 from A-Wanderer/add-ut
     new 41d1203  优雅下线
     new 5759c77  优雅下线
     new 9b7b897  unit test add
     new 941351d  add test
     new da25c24  import format
     new e879126  Fix: import formatter
     new 272d18a  Merge remote-tracking branch 'upstream/3.0' into graceful-shutdown
     new e2ff2ec  Fix: license
     new 3dd5c1f  invoker
     new 5b8939e  invoker
     new 6d6a61a  fix: ut
     new 97fb3d5  ftr: finish graceful shugdown
     new 0a137fd  fix: update triple
     new 6d34c66  fix: add nolint
     new c95f80d  Merge remote-tracking branch 'upstream/3.0' into graceful-shutdown
     new e8677d1  fix: lint
     new 39916bb  fix: ut
     new 7168e8e  Merge pull request #1675 from XiaoWeiKIN/graceful-shutdown

The 8360 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/filter.go                         |   6 +-
 config/graceful_shutdown.go                        | 104 +++++++++----
 config/graceful_shutdown_config.go                 |  51 +++++--
 config/graceful_shutdown_config_test.go            |   1 -
 config/root_config.go                              |  20 +++
 config/service_config.go                           |   2 +
 config/testdata/consumer_config.yml                |   2 +-
 .../testdata/consumer_config_with_configcenter.yml |   2 +-
 .../testdata/consumer_config_withoutProtocol.yml   |   2 +-
 config/testdata/provider_config.yml                |   2 +-
 .../testdata/provider_config_withoutProtocol.yml   |   2 +-
 filter/filter_impl/import.go                       |   2 +-
 .../consumer_filter.go}                            |  61 +++-----
 .../consumer_filter_test.go}                       |  30 +++-
 filter/graceful_shutdown/procider_filter_test.go   |  84 +++++++++++
 .../provider_filter.go}                            |  45 +++---
 filter/gshutdown/filter_test.go                    |  75 ----------
 filter/sentinel/filter_test.go                     |   7 +-
 go.mod                                             |   2 +-
 go.sum                                             |   4 +-
 imports/imports.go                                 |   2 +-
 protocol/dubbo3/dubbo3_exporter.go                 |   3 +-
 protocol/grpc/grpc_protocol.go                     |   6 +-
 protocol/grpc/server.go                            |   5 +
 .../protocolwrapper/protocol_filter_wrapper.go     |   2 +-
 .../config/reader/testdata/consumer_config.yml     |   2 +-
 registry/base_registry.go                          | 126 ++++++----------
 registry/protocol/protocol.go                      | 166 +++++++++++++--------
 registry/protocol/protocol_test.go                 |  21 +--
 29 files changed, 471 insertions(+), 366 deletions(-)
 copy filter/{gshutdown/filter.go => graceful_shutdown/consumer_filter.go} (57%)
 copy filter/{echo/filter_test.go => graceful_shutdown/consumer_filter_test.go} (55%)
 create mode 100644 filter/graceful_shutdown/procider_filter_test.go
 rename filter/{gshutdown/filter.go => graceful_shutdown/provider_filter.go} (70%)
 delete mode 100644 filter/gshutdown/filter_test.go