We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc67d2 commit 8a1f111Copy full SHA for 8a1f111
tests/protobuf-net.Grpc.Test.Integration/StreamTests.cs
@@ -817,10 +817,9 @@ public async Task ServerStreaming(bool fault)
817
Assert.Equal(StatusCode.Internal, ex.Status.StatusCode);
818
Assert.Equal(10, ctx.ResponseHeaders().GetInt32("req"));
819
820
- // managed client doesn't seem to get fault trailers on server-streaming
821
var expect = Enumerable.Range(0, 5).Sum();
822
if (IsManagedClient)
823
- {
+ { // see https://github.com/grpc/grpc-dotnet/issues/915
824
void Check(string? value)
825
{ // null or duplicated
826
_fixture.Log($"trailer value: '{value ?? "(null)"}'");
0 commit comments