diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 13:57:26 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 13:57:26 +0000 |
commit | c4cbcf3d83cc23ffa1b09ae513799e39f671c054 (patch) | |
tree | 7c37232e433131ca5d788dcb5d909c8efcf2d80d /cpp/test/Ice/threads/TestI.cpp | |
parent | update x64 components (diff) | |
download | ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.tar.bz2 ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.tar.xz ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.zip |
Removed use of Ice.OA.
Diffstat (limited to 'cpp/test/Ice/threads/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/threads/TestI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/threads/TestI.cpp b/cpp/test/Ice/threads/TestI.cpp index 3520d56263c..a6e00f1b1c0 100644 --- a/cpp/test/Ice/threads/TestI.cpp +++ b/cpp/test/Ice/threads/TestI.cpp @@ -231,8 +231,8 @@ ServerI::ServerI(const Ice::CommunicatorPtr& communicator) // id.properties = communicator->getProperties()->clone(); id.properties->setProperty("Ice.ThreadPerConnection", "1"); - id.properties->setProperty("Ice.OA.Adapter3.ThreadPool.SizeMax", "2"); - id.properties->setProperty("Ice.OA.Adapter3.ThreadPool.SizeWarn", "0"); + id.properties->setProperty("Adapter3.ThreadPool.SizeMax", "2"); + id.properties->setProperty("Adapter3.ThreadPool.SizeWarn", "0"); comm = Ice::initialize(id); adapter = comm->createObjectAdapterWithEndpoints("Adapter3", "default"); ident = comm->stringToIdentity("adapter3"); @@ -247,7 +247,7 @@ ServerI::ServerI(const Ice::CommunicatorPtr& communicator) id.properties->setProperty("Ice.ThreadPerConnection", "0"); id.properties->setProperty("Ice.ThreadPool.Server.SizeMax", "2"); id.properties->setProperty("Ice.ThreadPool.Server.SizeWarn", "0"); - id.properties->setProperty("Ice.OA.Adapter4.ThreadPerConnection", "1"); + id.properties->setProperty("Adapter4.ThreadPerConnection", "1"); comm = Ice::initialize(id); adapter = comm->createObjectAdapterWithEndpoints("Adapter4", "default"); ident = comm->stringToIdentity("adapter4"); |