From 28cd5bb55946ec9eb771c1274a05a42b6f57570a Mon Sep 17 00:00:00 2001 From: Renxuan Wang Date: Mon, 25 Jul 2022 22:18:00 -0700 Subject: [PATCH] Address comments. --- fdbrpc/HTTP.actor.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/fdbrpc/HTTP.actor.cpp b/fdbrpc/HTTP.actor.cpp index 6bae50c902..5fde809e2e 100644 --- a/fdbrpc/HTTP.actor.cpp +++ b/fdbrpc/HTTP.actor.cpp @@ -566,8 +566,6 @@ ACTOR Future sendProxyConnectRequest(Reference conn, if (!err.present() && r->code == 200) { return Void(); } - if (r.isValid()) - std::cerr << r->code << std::endl; // All errors in err are potentially retryable as well as certain HTTP response codes... bool retryable = err.present() || r->code == 500 || r->code == 502 || r->code == 503 || r->code == 429;