kylixs commented on pull request #9015: URL: https://github.com/apache/dubbo/pull/9015#issuecomment-942897754
You need to change the `ZookeeperTransporter` scope to APPLICATION to prevent zK client data of different applications from being mixed. ZK clients are created in `ZookeeperTransporter` , so it best to destroyed them in `ZookeeperTransporter` only. see https://github.com/apache/dubbo/pull/9033#discussion_r727950077 ```java @SPI(scope = ExtensionScope.FRAMEWORK) public interface ZookeeperTransporter { ``` -- 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]
