diff options
author | Craig Tiller <ctiller@google.com> | 2015-11-19 17:09:49 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-11-19 17:09:49 -0800 |
commit | ebdef9d674b33e7bd117e2a4a2da7762c35bbdfc (patch) | |
tree | 4ae8484d1f35f667bef4e55c36560527cc7cbb91 /test/core/end2end/fixtures | |
parent | f6e40fd2aaf50e075a6c91eab33acc9f72bf9ab0 (diff) |
Remove metadata context from the channel stack
Diffstat (limited to 'test/core/end2end/fixtures')
-rw-r--r-- | test/core/end2end/fixtures/h2_uchannel.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/end2end/fixtures/h2_uchannel.c b/test/core/end2end/fixtures/h2_uchannel.c index d1f9d38b82..5fed175f9d 100644 --- a/test/core/end2end/fixtures/h2_uchannel.c +++ b/test/core/end2end/fixtures/h2_uchannel.c @@ -263,7 +263,9 @@ static void chttp2_init_client_micro_fullstack(grpc_end2end_test_fixture *f, /* here sniffed_subchannel should be ready to use */ GPR_ASSERT(conn_state == GRPC_CHANNEL_IDLE); GPR_ASSERT(ffd->sniffed_subchannel != NULL); - f->client = grpc_client_uchannel_create(ffd->sniffed_subchannel, client_args); + f->client = grpc_client_uchannel_create( + ffd->sniffed_subchannel, client_args, + grpc_channel_get_metadata_context(ffd->master_channel)); grpc_client_uchannel_set_subchannel(f->client, ffd->sniffed_subchannel); gpr_log(GPR_INFO, "CHANNEL WRAPPING SUBCHANNEL: %p(%p)", f->client, ffd->sniffed_subchannel); |