From fd01b01e123c862cf6db3c2f58bb807a6c2b1053 Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Thu, 7 Mar 2024 07:22:37 -0600 Subject: [PATCH] GH-2266 This test has many connections so a live block can come in on each of the 15 connections at the same time causing many unlinkable block errors. --- 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 0449f21242..c437b1e858 100755 --- a/tests/nodeos_startup_catchup.py +++ b/tests/nodeos_startup_catchup.py @@ -196,7 +196,7 @@ def waitForNodeStarted(node): logFile = Utils.getNodeDataDir(catchupNodeNum) + "/stderr.txt" f = open(logFile) contents = f.read() - if contents.count("3030001 unlinkable_block_exception: Unlinkable block") > 10: # a few are fine + if contents.count("3030001 unlinkable_block_exception: Unlinkable block") > 15: # a few are fine errorExit(f"Node{catchupNodeNum} has unlinkable blocks: {logFile}.") testSuccessful=True