chickenlj commented on issue #10104: URL: https://github.com/apache/dubbo/issues/10104#issuecomment-1154603588
Nacos 注册中心的 group 配置需要具体分析一下,目前是全部注册到了默认分组,但有如下代码说明: ```java @Override public void doRegister(ServiceInstance serviceInstance) { execute(namingService, service -> { Instance instance = toInstance(serviceInstance); // Should not register real group for ServiceInstance // Or will cause consumer unable to fetch all of the providers from every group // Provider's group is invisible for consumer service.registerInstance(instance.gstServiceName(), Constants.DEFAULT_GROUP, instance); }); } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org