Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gRPC Server allow drop of request trailers (#1341)
Motivation: The [gRPC protocol](https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests) does not use request trailers. This means the server is allowed to drop trailers if any are present. This may provide a performance benefit as request transformation operations do not have to worry about preserving trailers. Modifications: - DefaultGrpcServerBuilder to use the allowDropRequestTrailers(true) method. Result: gRPC Server is allowed to drop the request trailers, requiring less work to preserve trailers (which don't exist) through request transform operations.
- Loading branch information