diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-06-14 20:00:09 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-06-14 20:00:09 +0000 |
commit | c3e99325e5f4eb32b8ab7320d30c0339e6fd9fc3 (patch) | |
tree | 7283ab977d6b60de20896c9467158238ed210a7d /java/src/IceInternal/Instance.java | |
parent | exit status fix (diff) | |
download | ice-c3e99325e5f4eb32b8ab7320d30c0339e6fd9fc3.tar.bz2 ice-c3e99325e5f4eb32b8ab7320d30c0339e6fd9fc3.tar.xz ice-c3e99325e5f4eb32b8ab7320d30c0339e6fd9fc3.zip |
Server thread pool now uses the server thread pool properties.
Diffstat (limited to 'java/src/IceInternal/Instance.java')
-rw-r--r-- | java/src/IceInternal/Instance.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceInternal/Instance.java b/java/src/IceInternal/Instance.java index 6d9ac6ae07e..ab8025c0388 100644 --- a/java/src/IceInternal/Instance.java +++ b/java/src/IceInternal/Instance.java @@ -114,7 +114,7 @@ public class Instance { if (_serverThreadPool == null) // Lazy initialization. { - _serverThreadPool = new ThreadPool(this, false, "ServerThreadPool"); + _serverThreadPool = new ThreadPool(this, true, "ServerThreadPool"); } } |