diff options
author | Abhishek Kumar <abhikumar@google.com> | 2015-06-19 09:43:09 -0700 |
---|---|---|
committer | Abhishek Kumar <abhikumar@google.com> | 2015-06-19 09:43:09 -0700 |
commit | 1bbdd02fa21a53a818b9e6f03426e18a2058d315 (patch) | |
tree | 3ad4f457953eed84078c4326fea3cd262ea4ed48 /doc | |
parent | ae58f59e4ab1d0128c3e525cc505c0b648e23972 (diff) |
Address review comments.
Defined server side behavior needed to echo status code and message . Assorted minor fixes to spelling.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/interop-test-descriptions.md | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/interop-test-descriptions.md b/doc/interop-test-descriptions.md index 3e85d1e8fb..4f32ab2822 100644 --- a/doc/interop-test-descriptions.md +++ b/doc/interop-test-descriptions.md @@ -409,7 +409,7 @@ Server features: Procedure: 1. While sending custom metadata (ascii + binary) in the header, client calls - UnaryCall with: + UnaryCall with: ``` { @@ -420,7 +420,7 @@ Procedure: } } ``` -The client attaches custom metadat with the following keys: +The client attaches custom metadata with the following keys: ``` "x-grpc-test-echo-initial" or @@ -445,6 +445,7 @@ status code and message sent along with the messages. Server features: * [UnaryCall][] * [FullDuplexCall][] +* [Echo Status][] Procedure: 1. Client calls UnaryCall with: @@ -694,6 +695,14 @@ When the client requests COMPRESSABLE payload, the response includes a payload of the size requested containing all zeros and the payload type is COMPRESSABLE. +### Echo Status +[Echo Status]: #echo-status +When the client sends a response_status in the request payload, the server returns +exactly the status code and messsage contained within said response_status. This +can be used by clients to verify correct handling of different status codes and +associated status messages end-to-end. + + ### Observe ResponseParameters.interval_us [Observe ResponseParameters.interval_us]: #observe-responseparametersinterval_us |