[ISSUE #6084] fixed a typo

This commit is contained in:
Misaki
2023-02-16 08:45:43 +08:00
committed by GitHub
parent 99c980ea37
commit f09771a43c
@@ -188,9 +188,9 @@ public class DefaultMQAdminExtImpl implements MQAdminExt, MQAdminExtInner {
this.serviceState = ServiceState.RUNNING;
int theadPoolCoreSize = Integer.parseInt(System.getProperty("rocketmq.admin.threadpool.coresize", "20"));
int threadPoolCoreSize = Integer.parseInt(System.getProperty("rocketmq.admin.threadpool.coresize", "20"));
this.threadPoolExecutor = new ThreadPoolExecutor(theadPoolCoreSize, 100, 5, TimeUnit.MINUTES, new LinkedBlockingQueue<>(), new ThreadFactoryImpl("DefaultMQAdminExtImpl_"));
this.threadPoolExecutor = new ThreadPoolExecutor(threadPoolCoreSize, 100, 5, TimeUnit.MINUTES, new LinkedBlockingQueue<>(), new ThreadFactoryImpl("DefaultMQAdminExtImpl_"));
break;
case RUNNING: