aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Abhishek Kumar <abhikumar@google.com>2016-06-13 16:37:09 -0700
committerGravatar GitHub <noreply@github.com>2016-06-13 16:37:09 -0700
commita47acad040242c03d5e812a40fd11225f327d45e (patch)
tree353d0516d51a27b2c8c7473a0f0f073af71285af /doc
parenta3a75284f86be92f99b6cb60f89404a7c43664f4 (diff)
parentc9dc83400beb65ed30c9e239e17b0eeeb1858fc6 (diff)
Merge pull request #6852 from nathanielmanistaatgoogle/status-codes
Document cardinality violation status codes
Diffstat (limited to 'doc')
-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|