Skip to content

Commit 47bd1e0

Browse files
authored
Un-version dlcheckpoints (#8266)
2 parents 6fb9bb1 + 57f5b4c commit 47bd1e0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/tribler/core/libtorrent/download_manager/download_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def __init__(self, config: TriblerConfigManager, notifier: Notifier,
9393
super().__init__()
9494
self.config = config
9595

96-
self.state_dir = Path(config.get_version_state_dir())
96+
self.state_dir = Path(config.get("state_dir"))
9797
self.ltsettings: dict[lt.session, dict] = {} # Stores a copy of the settings dict for each libtorrent session
9898
self.ltsessions: dict[int, Future[lt.session]] = {}
9999
self.dht_health_manager: DHTHealthManager | None = None

src/tribler/upgrade_script.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,11 @@ def upgrade(config: TriblerConfigManager, source: str, destination: str) -> None
352352
config.write()
353353

354354
# Step 2: copy downloads
355-
os.makedirs(os.path.join(destination, "dlcheckpoints"), exist_ok=True)
355+
parent_directory = os.path.dirname(destination) # Starting from 8.0.4 this is no longer versioned information
356+
os.makedirs(os.path.join(parent_directory, "dlcheckpoints"), exist_ok=True)
356357
for checkpoint in os.listdir(os.path.join(source, "dlcheckpoints")):
357358
_copy_if_not_exist(os.path.join(source, "dlcheckpoints", checkpoint),
358-
os.path.join(destination, "dlcheckpoints", checkpoint))
359+
os.path.join(parent_directory, "dlcheckpoints", checkpoint))
359360

360361
# Step 3: Copy tribler db.
361362
os.makedirs(os.path.join(destination, "sqlite"), exist_ok=True)

0 commit comments

Comments
 (0)