diff options
author | Noah Eisen <ncteisen@gmail.com> | 2016-10-20 12:00:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 12:00:50 -0700 |
commit | 74b731e42fe719fe4b753c61138854de9f5b9c93 (patch) | |
tree | e7a99fc379a0307a5686ca63a4d878266a4c2bb5 /src | |
parent | 2bc7b80082912e435fbec7cf40b375b3c15e963e (diff) | |
parent | c715d3f9bd4bae40bbb80dd6b8cff254819646a2 (diff) |
Merge pull request #8423 from ncteisen/interop_client_naming
Interop Client Naming Conventions
Diffstat (limited to 'src')
-rw-r--r-- | src/proto/grpc/testing/test.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/grpc/testing/test.proto b/src/proto/grpc/testing/test.proto index d6ef58ab12..2b0dcde5a9 100644 --- a/src/proto/grpc/testing/test.proto +++ b/src/proto/grpc/testing/test.proto @@ -77,7 +77,7 @@ service TestService { // The test server will not implement this method. It will be used // to test the behavior when clients call unimplemented methods. - rpc UnimplementedMethod(grpc.testing.Empty) returns (grpc.testing.Empty); + rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty); } // A simple service NOT implemented at servers so clients can test for |