aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/ext
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2015-08-06 09:39:51 -0700
committerGravatar Yang Gao <yangg@google.com>2015-08-06 09:39:51 -0700
commite5b045929937d56266d002d0469cf2411ffe2447 (patch)
treed14bee43f5a1528f7b298ff7c41045be6ca93ce1 /src/csharp/ext
parent2ba9e5df8193fcacf4f0a6ebbb759cf46df9e590 (diff)
parent44912d78a00d3614b94291d60fcbe75109542722 (diff)
Merge pull request #2750 from ctiller/propagate
Core-supported context propagation
Diffstat (limited to 'src/csharp/ext')
-rw-r--r--src/csharp/ext/grpc_csharp_ext.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/csharp/ext/grpc_csharp_ext.c b/src/csharp/ext/grpc_csharp_ext.c
index 37864a62a5..048887bc12 100644
--- a/src/csharp/ext/grpc_csharp_ext.c
+++ b/src/csharp/ext/grpc_csharp_ext.c
@@ -379,7 +379,8 @@ GPR_EXPORT grpc_call *GPR_CALLTYPE
grpcsharp_channel_create_call(grpc_channel *channel, grpc_completion_queue *cq,
const char *method, const char *host,
gpr_timespec deadline) {
- return grpc_channel_create_call(channel, cq, method, host, deadline);
+ return grpc_channel_create_call(channel, NULL, GRPC_PROPAGATE_DEFAULTS, cq,
+ method, host, deadline);
}
GPR_EXPORT grpc_connectivity_state GPR_CALLTYPE