curator
curator copied to clipboard
Apache Curator
Hello, I Use curator as follow: CuratorFrameworkFactory.Builder builder = CuratorFrameworkFactory.builder() .connectString("xxx") //this xxx includes 5 invalid IP address. .sessionTimeoutMs(10_000) .connectionTimeoutMs(10_000) retryPolicy(retryNtimes(3,5000)); client.start(); I try to test curator's timeout action when...
[CURATOR-495](https://github.com/apache/curator/issues/1015) introduced a new runSafeService field in CuratorFrameworkImpl class, and this field is either initialized by an external ExecutorService via the builder, or it is created internally within the class....
…mbeddedAdapter Add debug log for some specify situation to help developer identify the issue location It's will eat the exception if can't find the `ZooKeeperServerEmbeddedImpl` class in some case, it...