Asakiny commented on issue #17265: URL: https://github.com/apache/dolphinscheduler/issues/17265#issuecomment-2990008381
I find out the bug is caused by curator, according to the issue: https://github.com/apache/curator/issues//1154 , and I update curator version to 5.5.0 in dolphinscheduler/dolphinscheduler-bom/pom.xml, then the probelm can be solved. ```xml <profile> <id>zk-3.8</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <zookeeper.version>3.8.0</zookeeper.version> <curator.version>5.5.0</curator.version> </properties> </profile> ``` and we don't need to restart dolphinscheduler-api/master/worker pods. -- 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]
