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/26 02:07:42 UTC

(dubbo-go-samples) branch main updated (45e8c730 -> 4656c96e)

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 45e8c730 Merge pull request #682 from ev1lQuark/otel
     add 48b2e7e9 add proto
     add 79462183 add dubbo server and client
     add 666d4753 add grpc server and client
     add 6718a6ca add README
     add d41ef748 add tests
     add a4bedd6e add test
     add 13ad4cec fix ci
     add 70e91f48 rename
     new 4656c96e Merge pull request #685 from FinalT/feat-grpc

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:
 .../grpc/tests/integration/grpcprovider_test.go}   |  10 +-
 .../grpc}/tests/integration/main_test.go           |  26 +--
 rpc/grpc/README.md                                 | 219 +++++++++++++++++++
 rpc/grpc/README_zh.md                              | 237 +++++++++++++++++++++
 {helloworld => rpc/grpc}/go-client/cmd/main.go     |  24 ++-
 {helloworld => rpc/grpc}/go-server/cmd/main.go     |   4 +-
 rpc/grpc/grpc-client/cmd/main.go                   |  61 ++++++
 .../client.go => rpc/grpc/grpc-server/cmd/main.go  |  36 ++--
 {helloworld => rpc/grpc}/proto/greet.pb.go         |   6 +-
 {helloworld => rpc/grpc}/proto/greet.proto         |   2 +-
 {helloworld => rpc/grpc}/proto/greet.triple.go     |   0
 rpc/grpc/proto/greet_grpc.pb.go                    | 122 +++++++++++
 start_integrate_test.sh                            |   2 +
 13 files changed, 699 insertions(+), 50 deletions(-)
 copy integrate_test/{registry/nacos/tests/integration/userprovider_test.go => rpc/grpc/tests/integration/grpcprovider_test.go} (84%)
 copy integrate_test/{compatibility/game/go-server-game => rpc/grpc}/tests/integration/main_test.go (69%)
 create mode 100644 rpc/grpc/README.md
 create mode 100644 rpc/grpc/README_zh.md
 copy {helloworld => rpc/grpc}/go-client/cmd/main.go (69%)
 copy {helloworld => rpc/grpc}/go-server/cmd/main.go (92%)
 create mode 100644 rpc/grpc/grpc-client/cmd/main.go
 copy compatibility/filter/token/go-client/cmd/client.go => rpc/grpc/grpc-server/cmd/main.go (59%)
 copy {helloworld => rpc/grpc}/proto/greet.pb.go (96%)
 copy {helloworld => rpc/grpc}/proto/greet.proto (92%)
 copy {helloworld => rpc/grpc}/proto/greet.triple.go (100%)
 create mode 100644 rpc/grpc/proto/greet_grpc.pb.go


(dubbo-go-samples) 01/01: Merge pull request #685 from FinalT/feat-grpc

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 4656c96e5168cb4adb1850abbee96c8eda21e0a8
Merge: 45e8c730 70e91f48
Author: Ken Liu <ke...@gmail.com>
AuthorDate: Fri Jan 26 10:07:37 2024 +0800

    Merge pull request #685 from FinalT/feat-grpc
    
    feat:add grpc sample

 .../grpc/tests/integration/grpcprovider_test.go    |  39 ++++
 .../rpc/grpc/tests/integration/main_test.go        |  43 ++++
 rpc/grpc/README.md                                 | 219 +++++++++++++++++++
 rpc/grpc/README_zh.md                              | 237 +++++++++++++++++++++
 rpc/grpc/go-client/cmd/main.go                     |  65 ++++++
 rpc/grpc/go-server/cmd/main.go                     |  56 +++++
 rpc/grpc/grpc-client/cmd/main.go                   |  61 ++++++
 rpc/grpc/grpc-server/cmd/main.go                   |  49 +++++
 rpc/grpc/proto/greet.pb.go                         | 230 ++++++++++++++++++++
 rpc/grpc/proto/greet.proto                         |  34 +++
 rpc/grpc/proto/greet.triple.go                     | 139 ++++++++++++
 rpc/grpc/proto/greet_grpc.pb.go                    | 122 +++++++++++
 start_integrate_test.sh                            |   2 +
 13 files changed, 1296 insertions(+)