summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-07-16 16:47:34 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-07-16 16:47:34 +0000
commit7fb78ea814cbc9abe6b436e687390ef0358a47db (patch)
tree1107e4d829351c6efc003e3a235acd7c1fda0f3b
parent58a6aef102ca9ed96972270075219b64fa249e80 (diff)
downloadATCD-7fb78ea814cbc9abe6b436e687390ef0358a47db.tar.gz
ChangeLogTag: Mon Jul 16 11:44:30 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a6
-rw-r--r--TAO/tests/Big_Reply/server.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 07fb5038940..f49571f2471 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Mon Jul 16 11:44:30 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Big_Reply/server.cpp: The reply sent was too huge. The bug
+ #957 started showing up. Reduced the size of the reply to
+ approximately 4 MB.
+
Mon Jul 16 11:36:00 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
* tao/Strategies/DIOP_Factory.cpp (requires_explicit_endpoint):
diff --git a/TAO/tests/Big_Reply/server.cpp b/TAO/tests/Big_Reply/server.cpp
index d989862246e..2fa6ba4ea5a 100644
--- a/TAO/tests/Big_Reply/server.cpp
+++ b/TAO/tests/Big_Reply/server.cpp
@@ -9,7 +9,7 @@ ACE_RCSID(Big_Reply, server, "$Id$")
const char *ior_output_file = "test.ior";
// We can change this value if wanted..
-const CORBA::ULong data_size = 7340032;
+const CORBA::ULong data_size = 4000000;
int
parse_args (int argc, char *argv[])