aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-07-31 17:07:31 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-07-31 17:07:31 -0700
commite1b0e6ee12eb13130abf8cee6dd8264b36ff536f (patch)
treef65f3a8e4d8d0b3abb12a931b493204e93e6f655 /src/python/grpcio
parent99e61645ce348df59c549011d5111cd11ed1c291 (diff)
s/inherit/propagate/g
Diffstat (limited to 'src/python/grpcio')
-rw-r--r--src/python/grpcio/grpc/_adapter/_c/types/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/grpc/_adapter/_c/types/channel.c b/src/python/grpcio/grpc/_adapter/_c/types/channel.c
index 68eaea4da6..963104742f 100644
--- a/src/python/grpcio/grpc/_adapter/_c/types/channel.c
+++ b/src/python/grpcio/grpc/_adapter/_c/types/channel.c
@@ -128,7 +128,7 @@ Call *pygrpc_Channel_create_call(
}
call = pygrpc_Call_new_empty(cq);
call->c_call = grpc_channel_create_call(
- self->c_chan, NULL, GRPC_INHERIT_DEFAULTS, cq->c_cq, method, host,
+ self->c_chan, NULL, GRPC_PROPAGATE_DEFAULTS, cq->c_cq, method, host,
pygrpc_cast_double_to_gpr_timespec(deadline));
return call;
}