Issue #4873 - fix timeout on ExecutorThreadPool.join()
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
9b16f2deee
commit
590b1a6ab1
|
@ -302,7 +302,7 @@ public class ExecutorThreadPool extends ContainerLifeCycle implements ThreadPool
|
|||
@Override
|
||||
public void join() throws InterruptedException
|
||||
{
|
||||
_executor.awaitTermination(getStopTimeout(), TimeUnit.MILLISECONDS);
|
||||
_executor.awaitTermination(Long.MAX_VALUE, TimeUnit.MILLISECONDS);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue