diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-03-06 10:13:42 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-03-06 10:13:42 +0100 |
commit | c6dbd090d9691cc0116a2967b2827b858b184dfe (patch) | |
tree | 6d2ad80c98665c9090b16f97c400ab4b33c7ab73 /java/test/IceSSL/configuration/AllTests.java | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.tar.bz2 ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.tar.xz ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.zip |
Removed thread-per-connection and added serialize mode
Diffstat (limited to 'java/test/IceSSL/configuration/AllTests.java')
-rw-r--r-- | java/test/IceSSL/configuration/AllTests.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/java/test/IceSSL/configuration/AllTests.java b/java/test/IceSSL/configuration/AllTests.java index a900b6b604e..a974c18ce90 100644 --- a/java/test/IceSSL/configuration/AllTests.java +++ b/java/test/IceSSL/configuration/AllTests.java @@ -28,10 +28,6 @@ public class AllTests Ice.InitializationData result = new Ice.InitializationData(); result.properties = Ice.Util.createProperties(); result.properties.setProperty("Ice.Plugin.IceSSL", "IceSSL.PluginFactory"); - if(defaultProperties.getPropertyAsInt("Ice.ThreadPerConnection") > 0) - { - result.properties.setProperty("Ice.ThreadPerConnection", "1"); - } if(defaultProperties.getProperty("Ice.IPv6").length() > 0) { result.properties.setProperty("Ice.IPv6", defaultProperties.getProperty("Ice.IPv6")); @@ -51,10 +47,6 @@ public class AllTests { java.util.Map<String, String> result = new java.util.HashMap<String, String>(); result.put("Ice.Plugin.IceSSL", "IceSSL.PluginFactory"); - if(defaultProperties.getPropertyAsInt("Ice.ThreadPerConnection") > 0) - { - result.put("Ice.ThreadPerConnection", "1"); - } if(defaultProperties.getProperty("Ice.IPv6").length() > 0) { result.put("Ice.IPv6", defaultProperties.getProperty("Ice.IPv6")); |