aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/http
diff options
context:
space:
mode:
authorGravatar yihuaz <yihuaz@google.com>2018-10-05 09:33:21 -0700
committerGravatar GitHub <noreply@github.com>2018-10-05 09:33:21 -0700
commit291fa1022ac576fb2bca02076c4819f39c259182 (patch)
tree0d8836ba4617c61438db6d56565e371513b10cba /src/core/lib/http
parent683f20225c773f032e153df11db851d54978d572 (diff)
parentfb296824af9f5a0d41f7233620388737f7fdeb28 (diff)
Merge pull request #16791 from grpc/revert-16695-pass_pollset_set_tsi_handshaker
Revert "Create and pass pollset_set to ALTS TSI handshaker"
Diffstat (limited to 'src/core/lib/http')
-rw-r--r--src/core/lib/http/httpcli_security_connector.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/lib/http/httpcli_security_connector.cc b/src/core/lib/http/httpcli_security_connector.cc
index 98fb7d3937..50078c37a1 100644
--- a/src/core/lib/http/httpcli_security_connector.cc
+++ b/src/core/lib/http/httpcli_security_connector.cc
@@ -189,8 +189,7 @@ static void ssl_handshake(void* arg, grpc_endpoint* tcp, const char* host,
grpc_arg channel_arg = grpc_security_connector_to_arg(&sc->base);
grpc_channel_args args = {1, &channel_arg};
c->handshake_mgr = grpc_handshake_manager_create();
- grpc_handshakers_add(HANDSHAKER_CLIENT, &args,
- nullptr /* interested_parties */, c->handshake_mgr);
+ grpc_handshakers_add(HANDSHAKER_CLIENT, &args, c->handshake_mgr);
grpc_handshake_manager_do_handshake(
c->handshake_mgr, nullptr /* interested_parties */, tcp,
nullptr /* channel_args */, deadline, nullptr /* acceptor */,