Skip to content

Commit 6a08d73

Browse files
committed
update condition to align with source change
1 parent fcffcb2 commit 6a08d73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_framework/blockchain_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def stop(self, expected_stderr="", kill=False, wait=True):
162162
self.stderr.seek(0)
163163
stderr = self.stderr.read().decode("utf-8").strip()
164164
# TODO: Check how to avoid `pthread lock: Invalid argument`.
165-
if stderr != expected_stderr and stderr != "pthread lock: Invalid argument":
165+
if stderr != expected_stderr and stderr != "pthread lock: Invalid argument" and "pthread_mutex_lock" not in stderr:
166166
# print process status for debug
167167
if self.return_code is None:
168168
self.log.info("Process is still running")

0 commit comments

Comments
 (0)