YetAnotherHttpHandler
YetAnotherHttpHandler copied to clipboard
Request sent 'identity' grpc-encoding value with compressed message. [probably issue on dart-server side]
Following the tutorial and talking to a dart server, I get
Request sent 'identity' grpc-encoding value with compressed message.
on Windows 64, Unity Editor Windows 64 and Linux 64.
Does anybody have a workaround?
Using
var cl = new System.IO.Compression.CompressionLevel();
and giving to GrpcChannelOptions
CompressionProviders = new List<ICompressionProvider>() { new GzipCompressionProvider (cl) }
did not make a difference
CompressionProviders = new List<ICompressionProvider>()
also did not make a difference.
It seems issue is on dart side; I will keep this open until issue is solved, then close.
This PR fixes the issue. https://github.com/grpc/grpc-dart/pull/693