Readd 1 second queue get timeout

Otherwise daemon stops will sometimes inexplicably block.
This commit is contained in:
Joshua Boniface 2021-07-18 22:17:57 -04:00
parent 99fd7ebe63
commit 5be968123f
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ class ZookeeperLogger(Thread):
while self.running:
# Get a new message
try:
message = self.queue.get()
message = self.queue.get(timeout=1)
if not message:
continue
except Exception: