From e37104cf428bf4438ea8cce6061df8807bfec364 Mon Sep 17 00:00:00 2001 From: Sree Kuchibhotla Date: Fri, 1 Dec 2017 14:26:08 -0800 Subject: Delete outdated comments --- test/core/end2end/fixtures/http_proxy_fixture.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/core/end2end/fixtures/http_proxy_fixture.cc b/test/core/end2end/fixtures/http_proxy_fixture.cc index 5c73ddb003..190ea78ef9 100644 --- a/test/core/end2end/fixtures/http_proxy_fixture.cc +++ b/test/core/end2end/fixtures/http_proxy_fixture.cc @@ -249,8 +249,6 @@ static void on_client_read_done(grpc_exec_ctx* exec_ctx, void* arg, grpc_error* error) { proxy_connection* conn = (proxy_connection*)arg; if (error != GRPC_ERROR_NONE) { - // Report a read failure on the client endpoint. If there is no pending - // server write, then shutdown the server endpoint as well. proxy_connection_failed(exec_ctx, conn, CLIENT_READ_FAILED, "HTTP proxy client read", GRPC_ERROR_REF(error)); return; @@ -284,8 +282,6 @@ static void on_server_read_done(grpc_exec_ctx* exec_ctx, void* arg, grpc_error* error) { proxy_connection* conn = (proxy_connection*)arg; if (error != GRPC_ERROR_NONE) { - // Report a read failure on the server end point. If there is no pending - // write to the client, then shutdown the client endpoint as well. proxy_connection_failed(exec_ctx, conn, SERVER_READ_FAILED, "HTTP proxy server read", GRPC_ERROR_REF(error)); return; -- cgit v1.2.3