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.
This commit is contained in:
Antoine Poinsot 2023-08-22 16:23:48 +02:00
parent 05c9b580db
commit 97abc4699c
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -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}'")