aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/Internal/ClientResponseStream.cs
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-10-27 14:48:32 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-10-27 14:48:32 +0200
commit1a47fd02f63671f246e146b7cb08839a4126ccea (patch)
treec719d7f1b0c0485910dede0a073d9a379a3ceae6 /src/csharp/Grpc.Core/Internal/ClientResponseStream.cs
parentd92b795b53842b747a00a82d5aae0913d041766e (diff)
lazy initialize streamingResponseCallFinishedTcs
Diffstat (limited to 'src/csharp/Grpc.Core/Internal/ClientResponseStream.cs')
-rw-r--r--src/csharp/Grpc.Core/Internal/ClientResponseStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core/Internal/ClientResponseStream.cs b/src/csharp/Grpc.Core/Internal/ClientResponseStream.cs
index ad9423ff58..65bf60269a 100644
--- a/src/csharp/Grpc.Core/Internal/ClientResponseStream.cs
+++ b/src/csharp/Grpc.Core/Internal/ClientResponseStream.cs
@@ -73,7 +73,7 @@ namespace Grpc.Core.Internal
if (result == null)
{
- await call.StreamingCallFinishedTask.ConfigureAwait(false);
+ await call.StreamingResponseCallFinishedTask.ConfigureAwait(false);
return false;
}
return true;