From fddc8ede7c5c8976c342662e06f861918dbed5f5 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Wed, 20 Dec 2023 21:41:23 -0600 Subject: [PATCH] GH-2006 Search for more precise error and provide a bit more tolerance --- tests/nodeos_startup_catchup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/nodeos_startup_catchup.py b/tests/nodeos_startup_catchup.py index ea4af02747..28364fe6c2 100755 --- a/tests/nodeos_startup_catchup.py +++ b/tests/nodeos_startup_catchup.py @@ -195,7 +195,7 @@ def waitForNodeStarted(node): logFile = Utils.getNodeDataDir(catchupNodeNum) + "/stderr.txt" f = open(logFile) contents = f.read() - if contents.count("unlinkable_block_exception") > 3: # a few are fine + if contents.count("3030001 unlinkable_block_exception: Unlinkable block") > 10: # a few are fine errorExit(f"Node{catchupNodeNum} has unlinkable blocks: {logFile}.") testSuccessful=True