Address comments.

This commit is contained in:
Renxuan Wang 2022-07-25 22:18:00 -07:00
parent 657e6f8b60
commit 28cd5bb559
1 changed files with 0 additions and 2 deletions

View File

@ -566,8 +566,6 @@ ACTOR Future<Void> sendProxyConnectRequest(Reference<IConnection> 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;