You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
improve gRPC-Web client behavior with trailers with a space after the colon (#2053)
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.
0 commit comments