mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@605943 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1d7b88431a
commit
462921addf
|
@ -196,7 +196,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon
|
|||
// idle
|
||||
asyncConnectionThread = new ThreadPoolExecutor(1, 1, 5, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(), new ThreadFactory() {
|
||||
public Thread newThread(Runnable r) {
|
||||
Thread thread = new Thread(r, "AcitveMQ Connection Worker: " + transport);
|
||||
Thread thread = new Thread(r, "ActiveMQ Connection Worker: " + transport);
|
||||
thread.setDaemon(true);
|
||||
return thread;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue