summaryrefslogtreecommitdiff
path: root/python/test/Ice/timeout/Server.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/timeout/Server.py')
-rwxr-xr-xpython/test/Ice/timeout/Server.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/test/Ice/timeout/Server.py b/python/test/Ice/timeout/Server.py
index cde7d51ee98..917f8e90017 100755
--- a/python/test/Ice/timeout/Server.py
+++ b/python/test/Ice/timeout/Server.py
@@ -60,6 +60,13 @@ try:
initData = Ice.InitializationData()
initData.properties = Ice.createProperties(sys.argv)
initData.properties.setProperty("Ice.Warn.Connections", "0");
+
+ #
+ # The client sends large messages to cause the transport
+ # buffers to fill up.
+ #
+ initData.properties.setProperty("Ice.MessageSizeMax", "10000");
+
#
# Limit the recv buffer size, this test relies on the socket
# send() blocking after sending a given amount of data.