diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2010-01-20 12:02:41 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2010-01-20 12:02:41 -0330 |
commit | 8bd4da8b7c70e14288fbcbe078426c34549a91d2 (patch) | |
tree | b9ce899e06758e1a07fc7009a0237d2f23e13b09 /cpp/src/Ice/ThreadPool.cpp | |
parent | Bug 4618 - do not sign binaries we do not build (diff) | |
download | ice-8bd4da8b7c70e14288fbcbe078426c34549a91d2.tar.bz2 ice-8bd4da8b7c70e14288fbcbe078426c34549a91d2.tar.xz ice-8bd4da8b7c70e14288fbcbe078426c34549a91d2.zip |
Bug 4634 - redo lost changes wrt SizeWarn
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r-- | cpp/src/Ice/ThreadPool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp index 676bdb77ba5..7812fd02cd2 100644 --- a/cpp/src/Ice/ThreadPool.cpp +++ b/cpp/src/Ice/ThreadPool.cpp @@ -420,7 +420,7 @@ IceInternal::ThreadPool::ThreadPool(const InstancePtr& instance, const string& p sizeMax = size; } - int sizeWarn = properties->getPropertyAsIntWithDefault(_prefix + ".SizeWarn", sizeMax * 80 / 100); + int sizeWarn = properties->getPropertyAsInt(_prefix + ".SizeWarn"); if(sizeWarn != 0 && sizeWarn < size) { Warning out(_instance->initializationData().logger); |