diff options
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index c97fa9158d0..2669db55f88 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -657,8 +657,7 @@ IceInternal::ReferenceFactory::checkForUnknownProperties(const string& prefix) "LocatorCacheTimeout", "Locator", "Router", - "CollocationOptimized", - "ThreadPerConnection" + "CollocationOptimized" }; // @@ -725,7 +724,6 @@ IceInternal::ReferenceFactory::create(const Identity& ident, bool cacheConnection = true; bool preferSecure = defaultsAndOverrides->defaultPreferSecure; Ice::EndpointSelectionType endpointSelection = defaultsAndOverrides->defaultEndpointSelection; - bool threadPerConnection = _instance->threadPerConnection(); int locatorCacheTimeout = defaultsAndOverrides->defaultLocatorCacheTimeout; // @@ -793,9 +791,6 @@ IceInternal::ReferenceFactory::create(const Identity& ident, } } - property = propertyPrefix + ".ThreadPerConnection"; - threadPerConnection = properties->getPropertyAsIntWithDefault(property, threadPerConnection) > 0; - property = propertyPrefix + ".LocatorCacheTimeout"; locatorCacheTimeout = properties->getPropertyAsIntWithDefault(property, locatorCacheTimeout); } @@ -818,7 +813,6 @@ IceInternal::ReferenceFactory::create(const Identity& ident, cacheConnection, preferSecure, endpointSelection, - threadPerConnection, locatorCacheTimeout); } |