xiaomaguohe001
xiaomaguohe001
客户端2.4.3版本中的com.alibaba.nacos.client.config.impl.ConfigHttpClientManager类当中的READ_TIME_OUT_MILLIS变量不支持自定义设置,因为有时候默认的3秒并不够,比如,nacos集群首次启动,客户端应用服务启动时进行第一次登录认证 3秒一般不够用 比如nacos服务端的core-auth.log日志: 2024-10-16 13:59:59.377 [nacos] [nacos-grpc-executor-12] DEBUG [com.alibaba.nacos.core.auth] -auth start, request: ConfigPublishRequest2024-10-16 14:00:02.007 [nacos] [nacos-grpc-executor-12] DEBUG [com.alibaba.nacos.core.auth] -access denied, request: ConfigPublishRequest, reason: user not found! 2024-10-16 14:26:21.014 [nacos] [nacos-grpc-executor-4]...
## Issue Description 在启动类中 1、注入 ``` @NacosInjected private ConfigService configService; ``` 2、在注解@PostConstruct修饰的方法内部通过 ``` CompletableFuture.runAsync(() -> { configService.getConfig("dataId", "group", 5000L); }); ``` ### Describe what happened (or what feature you want)...