diff options
Diffstat (limited to 'java/test/Ice/faultTolerance/Server.java')
-rw-r--r-- | java/test/Ice/faultTolerance/Server.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/java/test/Ice/faultTolerance/Server.java b/java/test/Ice/faultTolerance/Server.java index 0d56bfef120..f8a8841d8ec 100644 --- a/java/test/Ice/faultTolerance/Server.java +++ b/java/test/Ice/faultTolerance/Server.java @@ -71,16 +71,16 @@ public class Server try { - // - // In this test, we need a longer server idle time, - // otherwise our test servers may time out before they are - // used in the test. - // - Ice.StringSeqHolder argsH = new Ice.StringSeqHolder(args); - Ice.InitializationData initData = new Ice.InitializationData(); - initData.properties = Ice.Util.createProperties(argsH); + // + // In this test, we need a longer server idle time, + // otherwise our test servers may time out before they are + // used in the test. + // + Ice.StringSeqHolder argsH = new Ice.StringSeqHolder(args); + Ice.InitializationData initData = new Ice.InitializationData(); + initData.properties = Ice.Util.createProperties(argsH); - initData.properties.setProperty("Ice.ServerIdleTime", "120"); // Two minutes. + initData.properties.setProperty("Ice.ServerIdleTime", "120"); // Two minutes. communicator = Ice.Util.initialize(argsH, initData); status = run(argsH.value, communicator); |