Skip to content

Commit

Permalink
GH-525 Use very large timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Oct 2, 2024
1 parent c0e7226 commit 4cf8f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/p2p_sync_throttle_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
assert unThrottledNode.waitForBlock(endLargeBlocksHeadBlock), f'wait for block {endLargeBlocksHeadBlock} on un-throttled node timed out'
endUnThrottledSync = time.time()

assert throttledNode.waitForBlock(endLargeBlocksHeadBlock, timeout=endLargeBlocksHeadBlock*2), f'Wait for block {endLargeBlocksHeadBlock} on throttled node timed out'
assert throttledNode.waitForBlock(endLargeBlocksHeadBlock, timeout=1024), f'Wait for block {endLargeBlocksHeadBlock} on throttled node timed out'
endThrottledSync = time.time()

throttledElapsed = endThrottledSync - clusterStart
Expand Down

0 comments on commit 4cf8f50

Please sign in to comment.