| 1110 | } |
| 1111 | |
| 1112 | void THttpConn::OnConnectFailed(const TErrorCode& ec) { |
| 1113 | THttpRequestRef r(GetRequest()); |
| 1114 | if (!!r) { |
| 1115 | r->OnConnectFailed(this, ec); |
| 1116 | } |
| 1117 | OnError(ec); |
| 1118 | } |
| 1119 | |
| 1120 | void THttpConn::OnError(const TString& errText) { |
| 1121 | Finalized_ = true; |
nothing calls this directly
no test coverage detected