tests: notifyAll() is deprecated, replace w/ notify_all()
This commit is contained in:
parent
1b00cdfd75
commit
5c088b2eb6
@ -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:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user