10966948d7
This adds a modified kazoo.DataWatch class which does not set watches on paths that don't exist. This is mostly so that when a DataWatched path is deleted, we don't leave a watch in place. Without that, the executor api will leak watches on the ZK cluster. We vendor the entire watches.py file from kazoo (ASL2 licensed) to avoid any issues with API changes. Separately we will see if they are interested in this class upstream. This updates the tests to use the wchp 4lw to test that we don't leak watches. Depends-On: https://review.opendev.org/c/zuul/zuul-jobs/+/799334 Change-Id: Ie4491eef03b58d858d95c78ba9454839d169cff1
18 lines
506 B
INI
18 lines
506 B
INI
# zoo.cfg for use in test-setup.sh
|
|
dataDir=/data
|
|
dataLogDir=/datalog
|
|
tickTime=2000
|
|
initLimit=5
|
|
syncLimit=2
|
|
autopurge.snapRetainCount=3
|
|
autopurge.purgeInterval=0
|
|
maxClientCnxns=1000
|
|
standaloneEnabled=true
|
|
admin.enableServer=true
|
|
server.1=nodepool-test-zookeeper:2888:3888
|
|
serverCnxnFactory=org.apache.zookeeper.server.NettyServerCnxnFactory
|
|
secureClientPort=2281
|
|
ssl.keyStore.location=/var/certs/keystores/zuul-test-zookeeper.pem
|
|
ssl.trustStore.location=/var/certs/certs/cacert.pem
|
|
4lw.commands.whitelist=*
|