YetAnotherHttpHandler icon indicating copy to clipboard operation
YetAnotherHttpHandler copied to clipboard

Request sent 'identity' grpc-encoding value with compressed message. [probably issue on dart-server side]

Open RubenGarcia opened this issue 1 year ago • 3 comments

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?

RubenGarcia avatar Sep 18 '23 08:09 RubenGarcia

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.

RubenGarcia avatar Sep 18 '23 08:09 RubenGarcia

It seems issue is on dart side; I will keep this open until issue is solved, then close.

RubenGarcia avatar Sep 18 '23 09:09 RubenGarcia

This PR fixes the issue. https://github.com/grpc/grpc-dart/pull/693

RubenGarcia avatar Mar 19 '24 10:03 RubenGarcia