From a67d117b41571d7ead6789f2dcbd2243da6c3570 Mon Sep 17 00:00:00 2001 From: pizihao <2335715300@qq.com> Date: Sat, 29 Apr 2023 22:43:06 +0800 Subject: [PATCH] fix : Modify the wrongly written variable(#1187) (#812) --- .../springboot/starter/core/ThreadPoolAdapterRegister.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolAdapterRegister.java b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolAdapterRegister.java index 9eed89fc..467bf5a6 100644 --- a/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolAdapterRegister.java +++ b/hippo4j-spring-boot/hippo4j-spring-boot-starter/src/main/java/cn/hippo4j/springboot/starter/core/ThreadPoolAdapterRegister.java @@ -79,7 +79,7 @@ public class ThreadPoolAdapterRegister implements ApplicationRunner, ThreadPoolA String clientAddress = CloudCommonIdUtil.getClientIpPort(environment, hippo4jInetUtils); cacheConfig.setClientAddress(clientAddress); cacheConfig.setThreadPoolAdapterStates(threadPoolStates); - String localServerAddress = CloudCommonIdUtil.getLocalServerIpPort(environment, hippo4JInetUtils); + String localServerAddress = CloudCommonIdUtil.getLocalServerIpPort(environment, hippo4jInetUtils); cacheConfig.setLocalServerAddress(localServerAddress); adapterCacheConfigList.add(cacheConfig); }