aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/statuscodes.md
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2016-07-06 15:08:30 -0700
committerGravatar Muxi Yan <mxyan@google.com>2016-07-06 15:08:30 -0700
commitfc99ff6644e51297c4d20b686a62783161c8500b (patch)
treea29a97e419a634453698aa2a320e52ce763f54d7 /doc/statuscodes.md
parent20caeb182cbc152e7e038306a9b01f438f79ca41 (diff)
Fix error code when client run out of memory in Objective C code base
Update Status Codes documentation
Diffstat (limited to 'doc/statuscodes.md')
-rw-r--r--doc/statuscodes.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/statuscodes.md b/doc/statuscodes.md
index c918f9ed9a..1cd72df30a 100644
--- a/doc/statuscodes.md
+++ b/doc/statuscodes.md
@@ -18,6 +18,7 @@ Only a subset of the pre-defined status codes are generated by the gRPC librarie
| Could not decompress, but compression algorithm supported (Server -> Client) | INTERNAL | Client |
| Compression mechanism used by client not supported at server | UNIMPLEMENTED | Server |
| Server temporarily out of resources (e.g., Flow-control resource limits reached) | RESOURCE_EXHAUSTED | Server|
+| Client does not have enough memory to hold the server response | RESOURCE_EXHAUSTED | Client |
| 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 |