aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/transport/chttp2/client/insecure
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ext/transport/chttp2/client/insecure')
-rw-r--r--src/core/ext/transport/chttp2/client/insecure/channel_create.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ext/transport/chttp2/client/insecure/channel_create.c b/src/core/ext/transport/chttp2/client/insecure/channel_create.c
index 8f8da7f5ea..f23f77f10f 100644
--- a/src/core/ext/transport/chttp2/client/insecure/channel_create.c
+++ b/src/core/ext/transport/chttp2/client/insecure/channel_create.c
@@ -193,8 +193,8 @@ static grpc_subchannel *client_channel_factory_create_subchannel(
c->handshake_mgr = grpc_handshake_manager_create();
if (f->http_proxy != NULL) {
grpc_handshake_manager_add(
- grpc_http_connect_handshaker_create(f->http_proxy, args->server_name),
- c->handshake_mgr);
+ c->handshake_mgr,
+ grpc_http_connect_handshaker_create(f->http_proxy, args->server_name));
}
args->args = final_args;
s = grpc_subchannel_create(exec_ctx, &c->base, args);