aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/proto
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@google.com>2016-09-28 14:17:25 -0700
committerGravatar Noah Eisen <ncteisen@google.com>2016-09-28 14:17:25 -0700
commit02e70ed120120b95f35862d5af8988ec18812ca6 (patch)
tree81975513d0a8eee5462000754c5ac9adab5a1cd9 /src/proto
parenta27eb1d07a78ae5115b0251b1096811722a8174d (diff)
changed method name in test.proto to more accurately reflect how the calls will be used
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/grpc/testing/test.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/proto/grpc/testing/test.proto b/src/proto/grpc/testing/test.proto
index 084d59f8aa..801baf8b3b 100644
--- a/src/proto/grpc/testing/test.proto
+++ b/src/proto/grpc/testing/test.proto
@@ -70,8 +70,9 @@ service TestService {
rpc HalfDuplexCall(stream StreamingOutputCallRequest)
returns (stream StreamingOutputCallResponse);
- // A call that no server should implement
- rpc UnimplementedCall(grpc.testing.Empty) returns (grpc.testing.Empty);
+ // 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);
}
// A simple service NOT implemented at servers so clients can test for