diff options
Diffstat (limited to 'cpp/test/IceGrid/allocation/Server.cpp')
-rw-r--r-- | cpp/test/IceGrid/allocation/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/allocation/Server.cpp b/cpp/test/IceGrid/allocation/Server.cpp index 0bb0c93af57..a78b454e1a6 100644 --- a/cpp/test/IceGrid/allocation/Server.cpp +++ b/cpp/test/IceGrid/allocation/Server.cpp @@ -32,7 +32,7 @@ Server::run(int argc, char* argv[]) string name = properties->getProperty("Ice.ProgramName"); Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("Server"); - adapter->add(new TestI(adapter, properties), communicator()->stringToIdentity("allocatable")); + adapter->add(new TestI(adapter, properties), communicator()->stringToIdentity(properties->getProperty("Alloc"))); adapter->add(new TestI(adapter, properties), communicator()->stringToIdentity("nonallocatable")); adapter->add(new TestI(adapter, properties), communicator()->stringToIdentity("allocatable1")); adapter->add(new TestI(adapter, properties), communicator()->stringToIdentity("allocatable2")); |