summaryrefslogtreecommitdiff
path: root/cli/file_fetcher.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2021-11-08 09:35:32 +1100
committerGitHub <noreply@github.com>2021-11-08 09:35:32 +1100
commit91f8bdda2cfb98ffdbce59a600fc3602534d5249 (patch)
tree31e8946c32119ca68fc5e7fe9de6afc653164ab5 /cli/file_fetcher.rs
parentb6b25671b29133a8a2f1325094dbd871655f8560 (diff)
fix(lsp): cache unsupported import completion origins (#12661)
Fixes #12621
Diffstat (limited to 'cli/file_fetcher.rs')
-rw-r--r--cli/file_fetcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/file_fetcher.rs b/cli/file_fetcher.rs
index 0c771f4cf..509050924 100644
--- a/cli/file_fetcher.rs
+++ b/cli/file_fetcher.rs
@@ -232,7 +232,7 @@ pub struct FileFetcher {
allow_remote: bool,
cache: FileCache,
cache_setting: CacheSetting,
- http_cache: HttpCache,
+ pub(crate) http_cache: HttpCache,
http_client: reqwest::Client,
blob_store: BlobStore,
}