summaryrefslogtreecommitdiff
path: root/zuul/zk/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'zuul/zk/__init__.py')
-rw-r--r--zuul/zk/__init__.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/zuul/zk/__init__.py b/zuul/zk/__init__.py
index 195197c5f..8ddc7511d 100644
--- a/zuul/zk/__init__.py
+++ b/zuul/zk/__init__.py
@@ -17,7 +17,7 @@ from threading import Thread
from typing import List, Callable
from kazoo.client import KazooClient
-from kazoo.exceptions import NoNodeError
+from kazoo.exceptions import NoNodeError, NodeExistsError
from kazoo.handlers.threading import KazooTimeoutError
from kazoo.protocol.states import KazooState
@@ -211,8 +211,11 @@ class ZooKeeperClient(object):
try:
zstat = self.client.set("/zuul/ltime", b"")
except NoNodeError:
- self.client.create("/zuul/ltime", b"", makepath=True)
- zstat = self.client.set("/zuul/ltime", b"")
+ try:
+ self.client.create("/zuul/ltime", b"", makepath=True)
+ zstat = self.client.set("/zuul/ltime", b"")
+ except NodeExistsError:
+ zstat = self.client.set("/zuul/ltime", b"")
return zstat.last_modified_transaction_id