diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-07-08 16:06:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-08 16:06:45 -0400 |
commit | 21cc279481ac5bffc29641e917e868dca42189d3 (patch) | |
tree | 4e0201da6a5d6beaff5139a84e4c52ec5e9affd6 /cli/cache/mod.rs | |
parent | f3095b8d311c85f633d280a980f76062015f8974 (diff) |
refactor: abstract away file system to be buried inside HttpCache (#19760)
This improves the HttpCache to make it being stored on the file system
an implementation detail.
Diffstat (limited to 'cli/cache/mod.rs')
-rw-r--r-- | cli/cache/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/cache/mod.rs b/cli/cache/mod.rs index 772ba10a5..94ccb42e4 100644 --- a/cli/cache/mod.rs +++ b/cli/cache/mod.rs @@ -84,6 +84,7 @@ impl Loader for FetchCacher { return None; } + #[allow(deprecated)] let local = self.file_fetcher.get_local_path(specifier)?; if local.is_file() { let emit = self |