You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2024/01/27 14:22:31 UTC

(dubbo-go-samples) branch main updated (bbe234e7 -> 1e0c5bed)

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

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


    from bbe234e7 Merge pull request #684 from FinalT/feat-connect-grpc
     add 82e5f100 feat: add retry sample
     add 3d2da868 opt import
     add 4bb57bb8 fix ci
     new 1e0c5bed Merge pull request #683 from sjcsjc123/retry

The 1 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:
 .../tests/integration/mian_test.go}                |   3 +-
 .../tests/integration/retry_test.go}               |   7 +-
 retry/README.md                                    | 164 +++++++++++++++++++++
 retry/README_CN.md                                 | 163 ++++++++++++++++++++
 {helloworld => retry}/go-client/cmd/main.go        |  13 +-
 .../cmd/server.go => retry/go-server/cmd/main.go   |  44 +++---
 {timeout => retry}/proto/greet.pb.go               | 108 +++++++-------
 {registry/nacos => retry}/proto/greet.proto        |   3 +-
 {timeout => retry}/proto/greet.triple.go           |  20 +--
 start_integrate_test.sh                            |   3 +
 10 files changed, 441 insertions(+), 87 deletions(-)
 copy integrate_test/{helloworld/tests/integration/main_test.go => retry/tests/integration/mian_test.go} (93%)
 copy integrate_test/{helloworld/tests/integration/helloworld_test.go => retry/tests/integration/retry_test.go} (84%)
 create mode 100644 retry/README.md
 create mode 100644 retry/README_CN.md
 copy {helloworld => retry}/go-client/cmd/main.go (78%)
 copy timeout/go-server/cmd/server.go => retry/go-server/cmd/main.go (74%)
 copy {timeout => retry}/proto/greet.pb.go (56%)
 copy {registry/nacos => retry}/proto/greet.proto (88%)
 copy {timeout => retry}/proto/greet.triple.go (86%)


(dubbo-go-samples) 01/01: Merge pull request #683 from sjcsjc123/retry

Posted by li...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

liujun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git

commit 1e0c5bed0e42387a5a2600b0ce5f6f2b6e9d8203
Merge: bbe234e7 4bb57bb8
Author: Ken Liu <ke...@gmail.com>
AuthorDate: Sat Jan 27 22:22:26 2024 +0800

    Merge pull request #683 from sjcsjc123/retry
    
    feat: add retry sample

 .../retry/tests/integration/mian_test.go           |  49 +++++
 .../retry/tests/integration/retry_test.go          |  40 ++++
 retry/README.md                                    | 164 ++++++++++++++
 retry/README_CN.md                                 | 163 ++++++++++++++
 retry/go-client/cmd/main.go                        |  56 +++++
 retry/go-server/cmd/main.go                        |  70 ++++++
 retry/proto/greet.pb.go                            | 236 +++++++++++++++++++++
 retry/proto/greet.proto                            |  35 +++
 retry/proto/greet.triple.go                        | 149 +++++++++++++
 start_integrate_test.sh                            |   3 +
 10 files changed, 965 insertions(+)