We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e4aaec commit 97fd564Copy full SHA for 97fd564
bootstrap_test.py
@@ -694,7 +694,7 @@ def test_decommissioned_wiped_node_can_gossip_to_single_seed(self):
694
node2.stop(wait_other_notice=False)
695
696
# Wipe its data
697
- self_cleanup(node2)
+ self._cleanup(node2)
698
699
# Now start it, it should be allowed to join
700
mark = node2.mark_log()
@@ -938,7 +938,7 @@ def _cleanup(self, node):
938
shutil.rmtree(commitlog_dir)
939
metadata_dir = os.path.join(node.get_path(), 'metadata')
940
if os.path.exists(metadata_dir):
941
- debug("Deleting {}".format(metadata_dir))
+ logger.debug("Deleting {}".format(metadata_dir))
942
shutil.rmtree(metadata_dir)
943
944
0 commit comments