From 97abc4699c7343e4be6a0596a25481f9e07bb3bb Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Tue, 22 Aug 2023 16:23:48 +0200 Subject: [PATCH] tests: don't wait for lianad to log on shutdown It seems to be causing some races that i don't want to be investigating at the moment. It's redundant anyways as we are already checking for the return code of the process. --- tests/test_framework/lianad.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_framework/lianad.py b/tests/test_framework/lianad.py index eb273c31..30fb4c94 100644 --- a/tests/test_framework/lianad.py +++ b/tests/test_framework/lianad.py @@ -127,9 +127,6 @@ class Lianad(TailableProc): def stop(self, timeout=5): try: self.rpc.stop() - self.wait_for_log( - "Stopping the liana daemon.", - ) self.proc.wait(timeout) except Exception as e: logging.error(f"{self.prefix} : error when calling stop: '{e}'")