From 2750f043db770e791533c3814528f03bc0737aaf Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Thu, 23 Apr 2020 17:58:50 -0400 Subject: [PATCH] Error handling: fix description (#211) --- content/docs/guides/error.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/content/docs/guides/error.md b/content/docs/guides/error.md index 5f29fcd..cf0a82d 100644 --- a/content/docs/guides/error.md +++ b/content/docs/guides/error.md @@ -1,8 +1,7 @@ --- layout: guides title: Error Handling -description: | - This page describes how gRPC deals with errors, including gRPC's built-in error codes. Example code in different languages can be found [here](https://github.com/avinassh/grpc-errors). +description: How gRPC deals with errors, and gRPC error codes. --- ### Standard error model @@ -106,3 +105,10 @@ Unauthenticated: credentials failed to get metadata | `GRPC_STATUS_UNAUTHENTICAT Invalid host set in authority metadata | `GRPC_STATUS_UNAUTHENTICATED` Error parsing response protocol buffer | `GRPC_STATUS_INTERNAL` Error parsing request protocol buffer | `GRPC_STATUS_INTERNAL` + +### Sample code + +For sample code illustrating how to handle various gRPC errors, see the +[grpc-errors][] repo. + +[grpc-errors]: https://github.com/avinassh/grpc-errors \ No newline at end of file