diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-05-14 03:54:35 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-05-14 03:54:35 +0000 |
commit | 79e3134fdd352d7edde573b2baa93602e859360b (patch) | |
tree | 230db9ea999ed86f0c88619ab917608e4f4729f0 /java/test/Ice/operations/Server.java | |
parent | added timeout & proxy test. Cleaned up operations test. (diff) | |
download | ice-79e3134fdd352d7edde573b2baa93602e859360b.tar.bz2 ice-79e3134fdd352d7edde573b2baa93602e859360b.tar.xz ice-79e3134fdd352d7edde573b2baa93602e859360b.zip |
more test cleanup (operations, proxy, timeout).
Diffstat (limited to 'java/test/Ice/operations/Server.java')
-rw-r--r-- | java/test/Ice/operations/Server.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/test/Ice/operations/Server.java b/java/test/Ice/operations/Server.java index f38353da4b6..0e2b9e7430f 100644 --- a/java/test/Ice/operations/Server.java +++ b/java/test/Ice/operations/Server.java @@ -32,6 +32,11 @@ public class Server Ice.StringSeqHolder argsH = new Ice.StringSeqHolder(args); Ice.InitializationData initData = new Ice.InitializationData(); initData.properties = Ice.Util.createProperties(argsH); + // + // Its possible to have batch oneway requests dispatched + // after the adapter is deactivated due to thread + // scheduling so we supress this warning. + // initData.properties.setProperty("Ice.Warn.Dispatch", "0"); communicator = Ice.Util.initialize(argsH, initData); |