aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/statuscodes.md
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2016-06-09 18:57:14 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2016-06-09 18:57:14 +0000
commitc9dc83400beb65ed30c9e239e17b0eeeb1858fc6 (patch)
treec3f0dc04fefede6599ce8899dc5eb80797637370 /doc/statuscodes.md
parent1bc2976a0f51e14d3525aecbf4b3450445ed2d1b (diff)
Document cardinality violation status codes
Diffstat (limited to 'doc/statuscodes.md')
-rw-r--r--doc/statuscodes.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/statuscodes.md b/doc/statuscodes.md
index 84258c8d12..c918f9ed9a 100644
--- a/doc/statuscodes.md
+++ b/doc/statuscodes.md
@@ -21,6 +21,8 @@ Only a subset of the pre-defined status codes are generated by the gRPC librarie
| Flow-control protocol violation | INTERNAL | Both |
| Error parsing returned status | UNKNOWN | Client |
| Incorrect Auth metadata ( Credentials failed to get metadata, Incompatible credentials set on channel and call, Invalid host set in `:authority` metadata, etc.) | UNAUTHENTICATED | Both |
+| Request cardinality violation (method requires exactly one request but client sent some other number of requests) | UNIMPLEMENTED | Server|
+| Response cardinality violation (method requires exactly one response but server sent some other number of responses) | UNIMPLEMENTED | Client|
| Error parsing response proto | INTERNAL | Client|
| Error parsing request proto | INTERNAL | Server|