Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/aleph/vm/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
return Path(settings.FAKE_DATA_VOLUME)

cache_path = Path(settings.DATA_CACHE) / ref
url = f"{settings.CONNECTOR_URL}/download/data/{ref}"
url = f"{settings.CONNECTOR_URL}download/data/{ref}"

Check warning on line 366 in src/aleph/vm/storage.py

View check run for this annotation

Codecov / codecov/patch

src/aleph/vm/storage.py#L366

Added line #L366 was not covered by tests
await download_file(url, cache_path)
await chown_to_jailman(cache_path)
return cache_path
Expand Down