Skip to content

Commit

Permalink
STAR-1589: Fix typos in bootstrap_test.py (#62)
Browse files Browse the repository at this point in the history
(cherry picked from commit 97fd564)
  • Loading branch information
jacek-lewandowski committed Oct 18, 2022
1 parent de5b64b commit b97bc5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def test_decommissioned_wiped_node_can_gossip_to_single_seed(self):
node2.stop(wait_other_notice=False)

# Wipe its data
self_cleanup(node2)
self._cleanup(node2)

# Now start it, it should be allowed to join
mark = node2.mark_log()
Expand Down Expand Up @@ -938,7 +938,7 @@ def _cleanup(self, node):
shutil.rmtree(commitlog_dir)
metadata_dir = os.path.join(node.get_path(), 'metadata')
if os.path.exists(metadata_dir):
debug("Deleting {}".format(metadata_dir))
logger.debug("Deleting {}".format(metadata_dir))
shutil.rmtree(metadata_dir)


Expand Down

0 comments on commit b97bc5d

Please sign in to comment.