aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/ext
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-07-31 17:01:47 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-07-31 17:01:47 -0700
commit99e61645ce348df59c549011d5111cd11ed1c291 (patch)
tree1430bb509e343af5983899f6b0808a018222440b /src/csharp/ext
parent3e7c6a701c8aea58cacb023ffa8b3c75e7e67390 (diff)
Update wrappers, tests to new create_call()
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 49a0471042..425d226bf0 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_INHERIT_DEFAULTS, cq,
+ method, host, deadline);
}
/* Channel args */