diff options
Diffstat (limited to 'cpp/test')
-rw-r--r-- | cpp/test/Freeze/evictor/Client.cpp | 2 | ||||
-rw-r--r-- | cpp/test/Freeze/evictor/Server.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Freeze/evictor/Client.cpp b/cpp/test/Freeze/evictor/Client.cpp index 50472376902..4ae7f833705 100644 --- a/cpp/test/Freeze/evictor/Client.cpp +++ b/cpp/test/Freeze/evictor/Client.cpp @@ -30,7 +30,7 @@ public: int run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { - string ref = "factory:default -p 12345 -t 2000"; + string ref = "factory:default -p 12345 -t 30000"; Ice::ObjectPrx base = communicator->stringToProxy(ref); test(base); Test::RemoteEvictorFactoryPrx factory = Test::RemoteEvictorFactoryPrx::checkedCast(base); diff --git a/cpp/test/Freeze/evictor/Server.cpp b/cpp/test/Freeze/evictor/Server.cpp index e7e625caef7..60f5a2d6e88 100644 --- a/cpp/test/Freeze/evictor/Server.cpp +++ b/cpp/test/Freeze/evictor/Server.cpp @@ -55,7 +55,7 @@ public: int run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator, const string& envName) { - communicator->getProperties()->setProperty("Factory.Endpoints", "default -p 12345 -t 2000"); + communicator->getProperties()->setProperty("Factory.Endpoints", "default -p 12345 -t 30000"); Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("Factory"); |