diff options
author | Noah Eisen <ncteisen@gmail.com> | 2018-02-14 11:26:26 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 11:26:26 -0800 |
commit | b85b28ee371e02ca4e2439a1890fc9f6a964f70e (patch) | |
tree | 9a2bb5422a46238e26770d65ba2bcca8211503a5 /src/core | |
parent | 6b8430a20b524bc766b17e7699dcaff1c08b3eb7 (diff) | |
parent | 5f1e8533b45e3095e543fa52e401445dbc918e75 (diff) |
Merge pull request #14427 from ncteisen/cleanup
Cleanup from a quickly merged PR
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ext/filters/client_channel/http_connect_handshaker.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/ext/filters/client_channel/http_connect_handshaker.cc b/src/core/ext/filters/client_channel/http_connect_handshaker.cc index 88bcc03a3c..c1959bdac6 100644 --- a/src/core/ext/filters/client_channel/http_connect_handshaker.cc +++ b/src/core/ext/filters/client_channel/http_connect_handshaker.cc @@ -255,7 +255,6 @@ static void http_connect_handshaker_do_handshake( const grpc_arg* arg = grpc_channel_args_find(args->args, GRPC_ARG_HTTP_CONNECT_SERVER); if (arg == nullptr || arg->type != GRPC_ARG_STRING) { - gpr_log(GPR_INFO, "HTTP CONNECT channel arg not found or invalid"); // Set shutdown to true so that subsequent calls to // http_connect_handshaker_shutdown() do nothing. gpr_mu_lock(&handshaker->mu); @@ -264,7 +263,6 @@ static void http_connect_handshaker_do_handshake( GRPC_CLOSURE_SCHED(on_handshake_done, GRPC_ERROR_NONE); return; } - GPR_ASSERT(arg->type == GRPC_ARG_STRING); char* server_name = arg->value.string; // Get headers from channel args. arg = grpc_channel_args_find(args->args, GRPC_ARG_HTTP_CONNECT_HEADERS); |