aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/fling
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 /test/core/fling
parent99e61645ce348df59c549011d5111cd11ed1c291 (diff)
s/inherit/propagate/g
Diffstat (limited to 'test/core/fling')
-rw-r--r--test/core/fling/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/fling/client.c b/test/core/fling/client.c
index efe09bb20e..17b737c9dd 100644
--- a/test/core/fling/client.c
+++ b/test/core/fling/client.c
@@ -89,7 +89,7 @@ static void init_ping_pong_request(void) {
}
static void step_ping_pong_request(void) {
- call = grpc_channel_create_call(channel, NULL, GRPC_INHERIT_DEFAULTS, cq,
+ call = grpc_channel_create_call(channel, NULL, GRPC_PROPAGATE_DEFAULTS, cq,
"/Reflector/reflectUnary", "localhost",
gpr_inf_future(GPR_CLOCK_REALTIME));
GPR_ASSERT(GRPC_CALL_OK ==
@@ -101,7 +101,7 @@ static void step_ping_pong_request(void) {
}
static void init_ping_pong_stream(void) {
- call = grpc_channel_create_call(channel, NULL, GRPC_INHERIT_DEFAULTS, cq,
+ call = grpc_channel_create_call(channel, NULL, GRPC_PROPAGATE_DEFAULTS, cq,
"/Reflector/reflectStream", "localhost",
gpr_inf_future(GPR_CLOCK_REALTIME));
stream_init_op.op = GRPC_OP_SEND_INITIAL_METADATA;