aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-02-24 16:14:28 -0800
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-02-25 10:03:40 -0800
commit4788e78d10919a74437d228790c0837ad96fcf6b (patch)
tree5aca3817d0d322edbd5210b3f9e6e3d0883b6526 /src
parent0e1f527914a3b08ddb2dcb4a22b622f5a30d5215 (diff)
fixed server streaming
Diffstat (limited to 'src')
-rw-r--r--src/csharp/Grpc.Core/Internal/AsyncCall.cs1
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;