diff options
Diffstat (limited to 'java/test')
-rw-r--r-- | java/test/Glacier/starter/CallbackClient.java | 2 | ||||
-rw-r--r-- | java/test/Ice/exceptions/Server.java | 2 | ||||
-rw-r--r-- | java/test/IcePack/deployer/icebox.xml | 2 | ||||
-rw-r--r-- | java/test/IcePack/deployer/server.xml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/java/test/Glacier/starter/CallbackClient.java b/java/test/Glacier/starter/CallbackClient.java index 8fb31387be1..71968821d19 100644 --- a/java/test/Glacier/starter/CallbackClient.java +++ b/java/test/Glacier/starter/CallbackClient.java @@ -146,7 +146,7 @@ class CallbackClient extends Ice.Application System.out.flush(); twoway.shutdown(); // No ping, otherwise the glacier router prints a warning - // message if it's started with --Ice.Warn.Connection. + // message if it's started with --Ice.Warn.Connections. System.out.println("ok"); /* try diff --git a/java/test/Ice/exceptions/Server.java b/java/test/Ice/exceptions/Server.java index 22bd30709a8..378c4b19d42 100644 --- a/java/test/Ice/exceptions/Server.java +++ b/java/test/Ice/exceptions/Server.java @@ -18,7 +18,7 @@ public class Server run(String[] args, Ice.Communicator communicator) { Ice.Properties properties = communicator.getProperties(); - properties.setProperty("Ice.Warn.Connection", "0"); + properties.setProperty("Ice.Warn.Connections", "0"); properties.setProperty("TestAdapter.Endpoints", "default -p 12345 -t 2000"); Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter"); Ice.Object object = new ThrowerI(adapter); diff --git a/java/test/IcePack/deployer/icebox.xml b/java/test/IcePack/deployer/icebox.xml index 36738c5860a..7801f10d911 100644 --- a/java/test/IcePack/deployer/icebox.xml +++ b/java/test/IcePack/deployer/icebox.xml @@ -4,7 +4,7 @@ <service name="Service2" descriptor="freezeservice.xml"/> <properties> - <property name="Ice.Warn.Connection" value="1"/> + <property name="Ice.Warn.Connections" value="1"/> </properties> </server>
\ No newline at end of file diff --git a/java/test/IcePack/deployer/server.xml b/java/test/IcePack/deployer/server.xml index b3460bf1b40..812a1b8c7f8 100644 --- a/java/test/IcePack/deployer/server.xml +++ b/java/test/IcePack/deployer/server.xml @@ -16,7 +16,7 @@ <properties> <property name="Type" value="Server"/> <property name="Name" value="${name}"/> - <property name="Ice.Warn.Connection" value="1"/> + <property name="Ice.Warn.Connections" value="1"/> </properties> </server>
\ No newline at end of file |