Skip to content

Commit

Permalink
fix(pytest): set boot nodes in recompress_storage.py
Browse files Browse the repository at this point in the history
this is a fix similar to
near#8711. After
near#8617, we need to correctly set
the boot nodes in this test, otherwise we get a timeout error in
test_tx_status() after the nodes are restarted
  • Loading branch information
marcelo-gonzalez committed Mar 11, 2023
1 parent 229cf47 commit 24a84cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest/tests/sanity/recompress_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def do_test_recompress_storage(self, *, archive: bool) -> None:
logger.info(f'Restart all nodes with the new database')
for idx, node in enumerate(self.nodes):
logger.info(f'Starting node{idx}')
node.start()
node.start(boot_node=self.nodes[0])

# Execute a few more transactions
time.sleep(5)
Expand Down

0 comments on commit 24a84cc

Please sign in to comment.