Implement cancellation propagation, define auth propagation

This commit is contained in:
Craig Tiller 2015-08-03 08:06:50 -07:00
parent eb6b0ede34
commit 70c8bfd09e
1 changed files with 1 additions and 1 deletions

View File

@ -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);