diff --git a/lbry/wallet/orchstr8/node.py b/lbry/wallet/orchstr8/node.py index 31c7b9102..25096e1a5 100644 --- a/lbry/wallet/orchstr8/node.py +++ b/lbry/wallet/orchstr8/node.py @@ -289,7 +289,8 @@ class SPVNode: cleanup and self.cleanup() def cleanup(self): - shutil.rmtree(self.data_path, ignore_errors=True) + log.error("skipping cleanup of data_path: %s", self.data_path) + #shutil.rmtree(self.data_path, ignore_errors=True) class LBCDProcess(asyncio.SubprocessProtocol):