Skip to content

Commit

Permalink
tests: notifyAll() is deprecated, replace w/ notify_all()
Browse files Browse the repository at this point in the history
  • Loading branch information
pythcoiner committed Nov 18, 2024
1 parent 327f0ea commit cdc9d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_framework/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def tail(self):
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:
Expand Down

0 comments on commit cdc9d6b

Please sign in to comment.