diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2015-02-24 16:14:28 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2015-02-25 10:03:40 -0800 |
commit | 4788e78d10919a74437d228790c0837ad96fcf6b (patch) | |
tree | 5aca3817d0d322edbd5210b3f9e6e3d0883b6526 /src/csharp | |
parent | 0e1f527914a3b08ddb2dcb4a22b622f5a30d5215 (diff) |
fixed server streaming
Diffstat (limited to 'src/csharp')
-rw-r--r-- | src/csharp/Grpc.Core/Internal/AsyncCall.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/csharp/Grpc.Core/Internal/AsyncCall.cs b/src/csharp/Grpc.Core/Internal/AsyncCall.cs index 44f0b37b0f..6f37b059f7 100644 --- a/src/csharp/Grpc.Core/Internal/AsyncCall.cs +++ b/src/csharp/Grpc.Core/Internal/AsyncCall.cs @@ -181,6 +181,7 @@ namespace Grpc.Core.Internal { started = true; halfcloseRequested = true; + halfclosed = true; // halfclose not confirmed yet, but it will be once finishedHandler is called. this.readObserver = readObserver; |