pull/5517/head
Jan Tattermusch 9 years ago
parent 2edea9ce81
commit 7d91dc3181
  1. 10
      src/csharp/Grpc.Core/Internal/AsyncCallServer.cs
  2. 2
      src/csharp/Grpc.IntegrationTesting/InteropClientServerTest.cs

@ -193,16 +193,6 @@ namespace Grpc.Core.Internal
lock (myLock)
{
finished = true;
if (cancelled)
{
// Once we cancel, we don't have to care that much
// about reads and writes.
// TODO(jtattermusch): is this still necessary?
Cancel();
}
ReleaseResourcesIfPossible();
}
// TODO(jtattermusch): handle error

@ -140,14 +140,12 @@ namespace Grpc.IntegrationTesting
}
[Test]
[Ignore("TODO: see #4427")]
public async Task StatusCodeAndMessage()
{
await InteropClient.RunStatusCodeAndMessageAsync(client);
}
[Test]
[Ignore("TODO: see #4427")]
public void UnimplementedMethod()
{
InteropClient.RunUnimplementedMethod(UnimplementedService.NewClient(channel));

Loading…
Cancel
Save