diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-08-03 08:06:50 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-08-03 08:06:50 -0700 |
commit | c7df0df61873d74577a357b00600166a44e280a0 (patch) | |
tree | 537b13c30a7c3d7f1803201e774a43eb7b7e6e62 /src/node | |
parent | 6728bef3b1edc9b7f4e4c31b18cd5f5a2747e8f1 (diff) |
Implement cancellation propagation, define auth propagation
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/ext/call.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/ext/call.cc b/src/node/ext/call.cc index e4451c36f6..fe585a0d4f 100644 --- a/src/node/ext/call.cc +++ b/src/node/ext/call.cc @@ -511,7 +511,7 @@ NAN_METHOD(Call::New) { double deadline = args[2]->NumberValue(); grpc_channel *wrapped_channel = channel->GetWrappedChannel(); grpc_call *wrapped_call = grpc_channel_create_call( - wrapped_channel, NULL, GRPC_INHERIT_DEFAULTS, + wrapped_channel, NULL, GRPC_PROPAGATE_DEFAULTS, CompletionQueueAsyncWorker::GetQueue(), *method, channel->GetHost(), MillisecondsToTimespec(deadline)); call = new Call(wrapped_call); |