diff options
author | bala <balanatarajan@users.noreply.github.com> | 2003-01-20 23:16:43 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2003-01-20 23:16:43 +0000 |
commit | be32bb4773f1c68a42f8076d8fa0628c07ba28f5 (patch) | |
tree | 862eb7eb3de5d4a9f31544260f71dcb032d3b153 /TAO/tao/IIOP_Connector.cpp | |
parent | f50bd6b815c8eda4a9dcb48e93ba4c75615efeef (diff) | |
download | ATCD-be32bb4773f1c68a42f8076d8fa0628c07ba28f5.tar.gz |
ChangeLogTag: Mon Jan 20 18:05:26 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/IIOP_Connector.cpp')
-rw-r--r-- | TAO/tao/IIOP_Connector.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/TAO/tao/IIOP_Connector.cpp b/TAO/tao/IIOP_Connector.cpp index f091e60b79d..43c96e2fbb5 100644 --- a/TAO/tao/IIOP_Connector.cpp +++ b/TAO/tao/IIOP_Connector.cpp @@ -177,15 +177,25 @@ TAO_IIOP_Connector::make_connection (TAO_GIOP_Invocation *invocation, if (result == -1 && errno == EWOULDBLOCK) { - if (TAO_debug_level) + if (TAO_debug_level > 2) ACE_DEBUG ((LM_DEBUG, "TAO (%P|%t) - IIOP_Connector::make_connection, " "going to wait for connection completion on local" "handle [%d]\n", svc_handler->get_handle ())); + result = this->active_connect_strategy_->wait (svc_handler, max_wait_time); + + if (TAO_debug_level > 2) + { + ACE_DEBUG ((LM_DEBUG, + "TAO (%P|%t) - IIOP_Connector::make_connection" + "wait done for handle[%d], result = %d\n", + svc_handler->get_handle (), result)); + } + } int status = |