From 89893c749c0bf5a461c4316fdf16f07aaa0a839f Mon Sep 17 00:00:00 2001 From: airoger Date: Sun, 28 Aug 2022 11:47:13 +0800 Subject: [PATCH] add log --- .../springboot/starter/core/DynamicThreadPoolPostProcessor.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DynamicThreadPoolPostProcessor.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DynamicThreadPoolPostProcessor.java index 21821849..256ace32 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DynamicThreadPoolPostProcessor.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/DynamicThreadPoolPostProcessor.java @@ -127,6 +127,7 @@ public final class DynamicThreadPoolPostProcessor implements BeanPostProcessor { ThreadPoolExecutor newDynamicThreadPoolExecutor = null; ThreadPoolParameterInfo threadPoolParameterInfo = new ThreadPoolParameterInfo(); try { + //通过http访问server端 Result result = httpAgent.httpGetByConfig(Constants.CONFIG_CONTROLLER_PATH, null, queryStrMap, 5000L); if (result.isSuccess() && result.getData() != null) { String resultJsonStr = JSONUtil.toJSONString(result.getData());