caoyanan666 opened a new issue, #13286: URL: https://github.com/apache/dubbo/issues/13286
Details can be found in https://github.com/alibaba/nacos/issues/11294 org.apache.dubbo.registry.nacos.NacosRegistry needs to release the nacos service when it is destroyed ```java package org.apache.dubbo.registry.nacos; public class NacosRegistry extends FailbackRegistry { ... @Override public void destroy() { super.destroy(); try { this.namingService.shutdown(); } catch (Throwable ignored) { logger.warn(ignored.getMessage(), ignored); } logger.info("nacos registry shutdown"); } } -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
