aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/filters/client_channel/http_connect_handshaker.cc
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-02-14 10:22:27 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2018-02-14 10:22:27 -0800
commit5f1e8533b45e3095e543fa52e401445dbc918e75 (patch)
treebbaad6c4fdd68738ab9c555caf702132465c8904 /src/core/ext/filters/client_channel/http_connect_handshaker.cc
parente27b27bcea1ad3e28364b7af4933cad365e24d53 (diff)
Cleanup from a quickly merged PR
Diffstat (limited to 'src/core/ext/filters/client_channel/http_connect_handshaker.cc')
-rw-r--r--src/core/ext/filters/client_channel/http_connect_handshaker.cc2
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);