summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-06-12 08:41:10 +0200
committerGitHub <noreply@github.com>2019-06-12 08:41:10 +0200
commit83076677f70c367c48ad70804c249f0ca2c8cd38 (patch)
tree8b0fa780a3339e88e30daa7a09d81291c2f14ab9
parent59df53784fe4f44d67e535dd47731590471205a6 (diff)
parentde31845d06bdb260a5ede9a2d202b92fbabad407 (diff)
downloadATCD-83076677f70c367c48ad70804c249f0ca2c8cd38.tar.gz
Merge pull request #922 from jwillemsen/jwi-imr
Remove handling of CORBA::TIMEOUT as part of the sendc_ping exception…
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/AsyncAccessManager.h1
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp14
2 files changed, 0 insertions, 15 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/AsyncAccessManager.h b/TAO/orbsvcs/ImplRepo_Service/AsyncAccessManager.h
index c02044b617a..f5fa9b4d8ef 100644
--- a/TAO/orbsvcs/ImplRepo_Service/AsyncAccessManager.h
+++ b/TAO/orbsvcs/ImplRepo_Service/AsyncAccessManager.h
@@ -119,7 +119,6 @@ typedef TAO_Intrusive_Ref_Count_Handle<AsyncAccessManager> AsyncAccessManager_pt
*
* @brief callback for handling asynch server startup requests
*/
-
class ActivatorReceiver :
public virtual POA_ImplementationRepository::AMI_ActivatorHandler
{
diff --git a/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp b/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp
index 84620c5635e..310e331b8a5 100644
--- a/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp
@@ -474,18 +474,6 @@ LiveEntry::do_ping (PortableServer::POA_ptr poa)
this->server_.c_str()));
}
}
- catch (const CORBA::TIMEOUT &ex)
- {
- if (ImR_Locator_i::debug () > 3)
- {
- ORBSVCS_DEBUG ((LM_DEBUG,
- ACE_TEXT ("(%P|%t) LiveEntry::do_ping, ")
- ACE_TEXT ("sendc_ping for server <%C> threw <%C> marking as timed out\n"),
- this->server_.c_str(), ex._info ().c_str ()));
- }
- this->release_callback ();
- this->status (LS_TIMEDOUT);
- }
catch (const CORBA::Exception &ex)
{
if (ImR_Locator_i::debug () > 3)
@@ -501,8 +489,6 @@ LiveEntry::do_ping (PortableServer::POA_ptr poa)
}
//---------------------------------------------------------------------------
-//---------------------------------------------------------------------------
-
PingReceiver::PingReceiver (LiveEntry *entry, PortableServer::POA_ptr poa)
:poa_ (PortableServer::POA::_duplicate(poa)),
entry_ (entry)