diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-19 14:18:23 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-19 14:18:23 +0000 |
commit | 588647427b50adf0d92f4b01b1e014d04cc3a767 (patch) | |
tree | dd0c3157d68f794cd76919fb8cb167710b265fb9 /java/test/Ice/exceptions | |
parent | fix (diff) | |
download | ice-588647427b50adf0d92f4b01b1e014d04cc3a767.tar.bz2 ice-588647427b50adf0d92f4b01b1e014d04cc3a767.tar.xz ice-588647427b50adf0d92f4b01b1e014d04cc3a767.zip |
fix
Diffstat (limited to 'java/test/Ice/exceptions')
-rw-r--r-- | java/test/Ice/exceptions/AllTests.java | 2 | ||||
-rw-r--r-- | java/test/Ice/exceptions/Collocated.java | 2 | ||||
-rw-r--r-- | java/test/Ice/exceptions/Server.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/java/test/Ice/exceptions/AllTests.java b/java/test/Ice/exceptions/AllTests.java index 16938281a36..a04e6441396 100644 --- a/java/test/Ice/exceptions/AllTests.java +++ b/java/test/Ice/exceptions/AllTests.java @@ -780,7 +780,7 @@ public class AllTests System.out.print("testing stringToProxy... "); System.out.flush(); - String ref = "thrower:default -p 12345 -t 2000"; + String ref = "thrower:default -p 12345 -t 10000"; Ice.ObjectPrx base = communicator.stringToProxy(ref); test(base != null); System.out.println("ok"); diff --git a/java/test/Ice/exceptions/Collocated.java b/java/test/Ice/exceptions/Collocated.java index 85c5113836d..4344d094c80 100644 --- a/java/test/Ice/exceptions/Collocated.java +++ b/java/test/Ice/exceptions/Collocated.java @@ -17,7 +17,7 @@ public class Collocated private static int run(String[] args, Ice.Communicator communicator) { - communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12345 -t 2000"); + communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12345 -t 10000"); Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter"); Ice.Object object = new ThrowerI(adapter); adapter.add(object, Ice.Util.stringToIdentity("thrower")); diff --git a/java/test/Ice/exceptions/Server.java b/java/test/Ice/exceptions/Server.java index 63941406f66..b768ecfa37a 100644 --- a/java/test/Ice/exceptions/Server.java +++ b/java/test/Ice/exceptions/Server.java @@ -19,7 +19,7 @@ public class Server { Ice.Properties properties = communicator.getProperties(); properties.setProperty("Ice.Warn.Dispatch", "0"); - properties.setProperty("TestAdapter.Endpoints", "default -p 12345 -t 2000"); + properties.setProperty("TestAdapter.Endpoints", "default -p 12345 -t 10000"); Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter"); Ice.Object object = new ThrowerI(adapter); adapter.add(object, Ice.Util.stringToIdentity("thrower")); |