Fixed reserved thread default

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2019-05-09 16:27:00 +02:00
parent 943c45cf17
commit 715939217f
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ public class QueuedThreadPool extends ContainerLifeCycle implements SizedThreadP
@Override
protected void doStart() throws Exception
{
if (_reservedThreads<=0)
if (_reservedThreads==0)
_tryExecutor = NO_TRY;
else
{