aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/channel/client_channel.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-23 07:56:33 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-23 07:56:33 -0700
commit3f2c2214b718ee61ddfd52efe922e652535aa537 (patch)
tree922ec210653fd93b7926f84ec9f52accbbaf40a7 /src/core/channel/client_channel.c
parente5cb23ba550878c2e562cd2df9ba0d857da63667 (diff)
Fiddling with an initial op
Diffstat (limited to 'src/core/channel/client_channel.c')
-rw-r--r--src/core/channel/client_channel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/channel/client_channel.c b/src/core/channel/client_channel.c
index 6ad50cb944..e6b0f7bba8 100644
--- a/src/core/channel/client_channel.c
+++ b/src/core/channel/client_channel.c
@@ -105,7 +105,8 @@ static int prepare_activate(grpc_call_element *elem,
calld->state = CALL_ACTIVE;
/* create a child call */
- calld->s.active.child_call = grpc_child_channel_create_call(on_child, elem);
+ /* TODO(ctiller): pass the waiting op down here */
+ calld->s.active.child_call = grpc_child_channel_create_call(on_child, elem, NULL);
return 1;
}