From 83d95787d848e3307b5505360c1d3c490b043472 Mon Sep 17 00:00:00 2001 From: MengJinLong <1023149936@qq.com> Date: Fri, 17 Nov 2023 00:06:33 +0800 Subject: [PATCH] optimization the registerDynamicThreadPool method of the DynamicThreadPoolConfigService class --- .../starter/support/DynamicThreadPoolConfigService.java | 1 - 1 file changed, 1 deletion(-) diff --git a/starters/threadpool/server/src/main/java/cn/hippo4j/springboot/starter/support/DynamicThreadPoolConfigService.java b/starters/threadpool/server/src/main/java/cn/hippo4j/springboot/starter/support/DynamicThreadPoolConfigService.java index f28a0df5..5fd832f5 100644 --- a/starters/threadpool/server/src/main/java/cn/hippo4j/springboot/starter/support/DynamicThreadPoolConfigService.java +++ b/starters/threadpool/server/src/main/java/cn/hippo4j/springboot/starter/support/DynamicThreadPoolConfigService.java @@ -62,7 +62,6 @@ public class DynamicThreadPoolConfigService extends AbstractDynamicThreadPoolSer @Override public ThreadPoolExecutor registerDynamicThreadPool(DynamicThreadPoolRegisterWrapper registerWrapper) { ThreadPoolExecutor dynamicThreadPoolExecutor = registerExecutor(registerWrapper); - subscribeConfig(registerWrapper); putNotifyAlarmConfig(registerWrapper); return dynamicThreadPoolExecutor; }