tests: notifyAll() is deprecated, replace w/ notify_all()

This commit is contained in:
pythcoiner 2024-11-18 06:40:24 +01:00
parent 1b00cdfd75
commit 5c088b2eb6

View File

@ -372,7 +372,7 @@ class TailableProc(object):
logging.debug(f"{self.prefix}: {line.decode().rstrip()}")
with self.logs_cond:
self.logs.append(str(line.rstrip()))
self.logs_cond.notifyAll()
self.logs_cond.notify_all()
self.running = False
self.proc.stdout.close()
if self.proc.stderr is not None: