diff options
author | Craig Tiller <ctiller@google.com> | 2015-08-05 16:03:55 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-08-05 16:03:55 -0700 |
commit | 354e2127a2fd5003449fb3d6456bd28818d0ac9b (patch) | |
tree | a6708a57ce09a1b8757ca542f4639d2e15ee5e2b /src/objective-c/GRPCClient/private | |
parent | a6f8f925998768ebee8a86e0749bdbc443e5ea2e (diff) |
Update Objective-C
Diffstat (limited to 'src/objective-c/GRPCClient/private')
-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 |