diff options
author | Mark Spruiell <mes@zeroc.com> | 2017-06-13 15:16:14 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2017-06-13 15:16:14 -0700 |
commit | 55152e4cb857f17260b59255b72de2d0caf45dee (patch) | |
tree | a1efae4ba3de87c97586209e0e2e833e64cc7e1d /cpp/test/Ice/impl/Server.cpp | |
parent | Fix for ICE-8044 - adapterDeactivation test failure caused by deadlock (diff) | |
download | ice-55152e4cb857f17260b59255b72de2d0caf45dee.tar.bz2 ice-55152e4cb857f17260b59255b72de2d0caf45dee.tar.xz ice-55152e4cb857f17260b59255b72de2d0caf45dee.zip |
C++ & python test fixes
Diffstat (limited to 'cpp/test/Ice/impl/Server.cpp')
-rw-r--r-- | cpp/test/Ice/impl/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/impl/Server.cpp b/cpp/test/Ice/impl/Server.cpp index d10beeb0c75..05fd317968f 100644 --- a/cpp/test/Ice/impl/Server.cpp +++ b/cpp/test/Ice/impl/Server.cpp @@ -20,7 +20,7 @@ int run(int, char**, const Ice::CommunicatorPtr& communicator) { string endpt = getTestEndpoint(communicator, 0); - communicator->getProperties()->setProperty("TestAdapter.Endpoints", endpt + ":udp"); + communicator->getProperties()->setProperty("TestAdapter.Endpoints", endpt); Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter"); adapter->add(ICE_MAKE_SHARED(MyDerivedClassI), Ice::stringToIdentity("test")); adapter->activate(); |