Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve gRPC-Web client behavior with trailers with a space after the…
… colon According to the gRPC Web Spec, Trailers should have a space after the colon, like this: grpc-status: 0 grpc-message: Message Here But tonic-web client and server both omit the space, like: grpc-status:0 grpc-message:Message Here This is likely fine for the server to do since most clients can handle having the space or not but the tonic-web client should also handle the space character being there, which is what this change does.
- Loading branch information