Skip to content

Commit

Permalink
Merge pull request #2292 from AntelopeIO/GH-2266-test
Browse files Browse the repository at this point in the history
IF: Test: nodeos_startup_catchup_if_lr_test relax constraint
  • Loading branch information
heifner authored Mar 7, 2024
2 parents 321aaa7 + fd01b01 commit 3302a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nodeos_startup_catchup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3302a6b

Please sign in to comment.