diff options
author | Robbie Shade <rjshade@google.com> | 2015-08-06 12:46:11 -0400 |
---|---|---|
committer | Robbie Shade <rjshade@google.com> | 2015-08-06 12:46:11 -0400 |
commit | 98981efe0d29626645abc2ff495737a078bab021 (patch) | |
tree | ad9e6468296d66c83d566721891b5ba60f3bbb78 /src/objective-c | |
parent | fb5eb0e98d8068fb96f879ee0dc20d3b227a2a88 (diff) | |
parent | 5a2017036dbb44ec413831c13dbd81f6564d5fb4 (diff) |
Regenerated Makefile
Diffstat (limited to 'src/objective-c')
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCWrappedCall.m | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m index 1db63df77f..ecc512edca 100644 --- a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m +++ b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m @@ -246,11 +246,10 @@ if (!_queue) { return nil; } - _call = grpc_channel_create_call(channel.unmanagedChannel, - _queue.unmanagedQueue, - path.UTF8String, - host.UTF8String, - gpr_inf_future(GPR_CLOCK_REALTIME)); + _call = grpc_channel_create_call( + channel.unmanagedChannel, NULL, GRPC_PROPAGATE_DEFAULTS, + _queue.unmanagedQueue, path.UTF8String, host.UTF8String, + gpr_inf_future(GPR_CLOCK_REALTIME)); if (_call == NULL) { return nil; } @@ -299,4 +298,4 @@ grpc_call_destroy(_call); } -@end
\ No newline at end of file +@end |