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 /java/src/IceInternal/ThreadPool.java | |
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 'java/src/IceInternal/ThreadPool.java')
-rw-r--r-- | java/src/IceInternal/ThreadPool.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceInternal/ThreadPool.java b/java/src/IceInternal/ThreadPool.java index 647217c79f3..cb99614fc64 100644 --- a/java/src/IceInternal/ThreadPool.java +++ b/java/src/IceInternal/ThreadPool.java @@ -121,7 +121,7 @@ public final class ThreadPool sizeMax = size; } - int sizeWarn = properties.getPropertyAsIntWithDefault(_prefix + ".SizeWarn", sizeMax * 80 / 100); + int sizeWarn = properties.getPropertyAsInt(_prefix + ".SizeWarn"); if(sizeWarn != 0 && sizeWarn < size) { String s = _prefix + ".SizeWarn < " + _prefix + ".Size; adjusted SizeWarn to Size (" + size + ")"; |