We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6ca831 + c2c0c5c commit 2f9b7d3Copy full SHA for 2f9b7d3
src/main/scala/org/apache/mesos/chronos/scheduler/config/ZookeeperModule.scala
@@ -31,7 +31,7 @@ class ZookeeperModule(val config: SchedulerConfiguration with HttpConf)
31
def provideZookeeperClient(): CuratorFramework = {
32
val curator = CuratorFrameworkFactory.builder()
33
.connectionTimeoutMs(config.zooKeeperTimeout().toInt)
34
- .canBeReadOnly(true)
+ .canBeReadOnly(false)
35
.connectString(validateZkServers())
36
.retryPolicy(new ExponentialBackoffRetry(1000, 10))
37
.build()
0 commit comments