summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-08-08 20:07:32 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-08-08 20:07:32 +0000
commit39679945fa8b90691f72cff5d80322289108547f (patch)
tree2a9fdb26259f2254904fa30e8860de8e23ed5fab
parent8f42053262d0bb9d969c47455532bf7c4c31a149 (diff)
downloadATCD-39679945fa8b90691f72cff5d80322289108547f.tar.gz
ChangeLogTag: Wed Aug 8 15:03:58 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a10
-rw-r--r--TAO/tao/Strategies/DIOP_Transport.cpp2
2 files changed, 11 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 360b2145d08..70d5b55e8c2 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,13 @@
+Wed Aug 8 15:03:58 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tao/Strategies/DIOP_Transport.cpp (send_request): There was no
+ reason to idle the transport after a send. In other protocols,
+ where the handles are cached the call idle_after_send () does
+ certain things based on the muxed strategy. But for DIOP, we
+ dont cache the handles and the call started doing something
+ really bad like closing the handles. We now just return a 0
+ after sending the request.
+
Wed Aug 8 12:16:22 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* performance-tests/Thread_Per_Connection_Latency/svc.conf:
diff --git a/TAO/tao/Strategies/DIOP_Transport.cpp b/TAO/tao/Strategies/DIOP_Transport.cpp
index 893d91938d9..2690deb592e 100644
--- a/TAO/tao/Strategies/DIOP_Transport.cpp
+++ b/TAO/tao/Strategies/DIOP_Transport.cpp
@@ -250,7 +250,7 @@ TAO_DIOP_Transport::send_request (TAO_Stub *stub,
return -1;
- return this->idle_after_send ();
+ return 0;
}
int