diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-01-20 11:05:28 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-01-20 11:05:28 +0000 |
commit | 3ddd97f1420d81c4b921bbe037b27e4cac585196 (patch) | |
tree | f154c180c02e5b391cc3c9017933a266d0a86894 /java/test/Ice/operations/Server.java | |
parent | Improved IcePack reliability. (diff) | |
download | ice-3ddd97f1420d81c4b921bbe037b27e4cac585196.tar.bz2 ice-3ddd97f1420d81c4b921bbe037b27e4cac585196.tar.xz ice-3ddd97f1420d81c4b921bbe037b27e4cac585196.zip |
:changeLocator()
:activate() which could cause it to raise ObjectAdapterDeactivatedException
if the adapter was deactivated concurrently.
Added timeouts to workaround problem with the MacOS X JDK.
Diffstat (limited to 'java/test/Ice/operations/Server.java')
-rw-r--r-- | java/test/Ice/operations/Server.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/Ice/operations/Server.java b/java/test/Ice/operations/Server.java index df43d08eda3..7a5f51f78d3 100644 --- a/java/test/Ice/operations/Server.java +++ b/java/test/Ice/operations/Server.java @@ -12,7 +12,7 @@ public class Server private static int run(String[] args, Ice.Communicator communicator) { - communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12345 -t 10000"); + communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12345"); Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter"); Ice.Object object = new MyDerivedClassI(adapter, Ice.Util.stringToIdentity("test")); adapter.add(object, Ice.Util.stringToIdentity("test")); |