nghttpx: Call ConnectBlocker::on_success when connection is established

This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-23 23:00:18 +09:00
parent 3c6b75fb2b
commit ecfd593076
1 changed files with 4 additions and 3 deletions

View File

@ -194,8 +194,6 @@ int HttpDownstreamConnection::attach_downstream(Downstream *downstream) {
continue;
}
connect_blocker->on_success();
if (LOG_ENABLED(INFO)) {
DCLOG(INFO, this) << "Connecting to downstream server";
}
@ -753,17 +751,20 @@ end:
}
int HttpDownstreamConnection::on_connect() {
auto connect_blocker = client_handler_->get_http1_connect_blocker();
if (!util::check_socket_connected(fd_)) {
ev_io_stop(loop_, &wev_);
if (LOG_ENABLED(INFO)) {
DLOG(INFO, this) << "downstream connect failed";
}
auto connect_blocker = client_handler_->get_http1_connect_blocker();
connect_blocker->on_failure();
return -1;
}
connect_blocker->on_success();
ev_io_start(loop_, &rev_);
ev_set_cb(&wev_, writecb);