diff options
Diffstat (limited to 'py/test/Ice/binding')
-rw-r--r-- | py/test/Ice/binding/Server.py | 2 | ||||
-rw-r--r-- | py/test/Ice/binding/TestI.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/py/test/Ice/binding/Server.py b/py/test/Ice/binding/Server.py index 873b5e1432d..290790b87f9 100644 --- a/py/test/Ice/binding/Server.py +++ b/py/test/Ice/binding/Server.py @@ -26,7 +26,7 @@ import Test, TestI def run(args, communicator): communicator.getProperties().setProperty("Ice.Warn.Connections", "0") - communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000:udp") + communicator.getProperties().setProperty("Ice.OA.TestAdapter.Endpoints", "default -p 12010 -t 10000:udp") adapter = communicator.createObjectAdapter("TestAdapter") id = communicator.stringToIdentity("communicator") adapter.add(TestI.RemoteCommunicatorI(), id) diff --git a/py/test/Ice/binding/TestI.py b/py/test/Ice/binding/TestI.py index 7081caf468b..dfd5533c599 100644 --- a/py/test/Ice/binding/TestI.py +++ b/py/test/Ice/binding/TestI.py @@ -13,7 +13,7 @@ import Ice, Test class RemoteCommunicatorI(Test.RemoteCommunicator): def createObjectAdapter(self, name, endpoints, current=None): com = current.adapter.getCommunicator() - com.getProperties().setProperty(name + ".ThreadPool.Size", "1") + com.getProperties().setProperty("Ice.OA." + name + ".ThreadPool.Size", "1") adapter = com.createObjectAdapterWithEndpoints(name, endpoints) return Test.RemoteObjectAdapterPrx.uncheckedCast(current.adapter.addWithUUID(RemoteObjectAdapterI(adapter))) |