Create daemon threads in InternalAbstractHttpAsyncClient

This commit is contained in:
Richard Hernandez 2022-04-06 08:52:09 -07:00 committed by Ryan Schmitt
parent 94017237b2
commit 36678c44dc
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ import org.slf4j.LoggerFactory;
abstract class InternalAbstractHttpAsyncClient extends AbstractHttpAsyncClientBase {
private final static ThreadFactory SCHEDULER_THREAD_FACTORY = new DefaultThreadFactory("Scheduled-executor");
private final static ThreadFactory SCHEDULER_THREAD_FACTORY = new DefaultThreadFactory("Scheduled-executor", true);
private static final Logger LOG = LoggerFactory.getLogger(InternalAbstractHttpAsyncClient.class);
private final AsyncExecChainElement execChain;