aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-12-01 14:26:08 -0800
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-12-01 14:26:08 -0800
commite37104cf428bf4438ea8cce6061df8807bfec364 (patch)
tree289b1ccfa7de48f30ef724b9227739ce74c5bd23
parent45abfe104cb4427adbbaca33c299a287c1b93be3 (diff)
Delete outdated comments
-rw-r--r--test/core/end2end/fixtures/http_proxy_fixture.cc4
1 files changed, 0 insertions, 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;