summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-08-07 03:14:23 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-08-07 03:14:23 +0000
commit08e9faebb8d3375823ca19966583c7a7e7f640a0 (patch)
tree8351bd47d855d9cf442cdf89dd029357e1364506
parent106e463aaed06279023ac2767465ff3653a9c9a3 (diff)
downloadATCD-08e9faebb8d3375823ca19966583c7a7e7f640a0.tar.gz
ChangeLogTag:Wed Aug 6 22:10:51 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog13
-rw-r--r--TAO/orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp6
2 files changed, 15 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index f44b959b5e6..ef0b70df4f4 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,14 @@
+Wed Aug 6 22:10:51 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp:
+
+ If the TAG_FT_GROUP component is not available, don't propagate
+ the exception to the application. There may be cases, where the
+ FTORB would try to make simple calls, like trying to contact a
+ naming service. The application can't do much if TAG_FT_GROUP
+ isn't available. Thanks to Huang-Min Huang for reporting the
+ problem.
+
Wed Aug 6 19:09:00 2003 Arvind S. Krishna <arvindk@dre.vanderbilt.edu>
* performance-tests/Latency/Collocation/Client_Task.h:
@@ -12,7 +23,7 @@ Wed Aug 6 19:09:00 2003 Arvind S. Krishna <arvindk@dre.vanderbilt.edu>
* performance-tests/Latency/Collocation/README:
* performance-tests/Latency/Collocation/Makefile:
* performance-tests/Latency/Collocation/svc.conf:
- Simple test to measure round-trip latency when client and server
+ Simple test to measure round-trip latency when client and server
are collocated. Both client and server are single-threaded.
Collocation strategy used for testing is the "Thru_POA".
diff --git a/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp b/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp
index 2cff7e44a87..47d0f29393b 100644
--- a/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp
+++ b/TAO/orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp
@@ -237,8 +237,8 @@ TAO_FT_ClientRequest_Interceptor::group_version_context (
}
ACE_CATCHANY
{
- // Not much can be done anyway. Just throw
- ACE_RE_THROW;
+ // Not much can be done anyway. Just keep quiet
+ // ACE_RE_THROW;
}
ACE_ENDTRY;
ACE_CHECK;
@@ -314,7 +314,7 @@ TAO_FT_ClientRequest_Interceptor::request_service_context (
}
ACE_CATCHANY
{
- ACE_RE_THROW;
+ // ACE_RE_THROW;
}
ACE_ENDTRY;
ACE_CHECK;