Skip to content

Commit

Permalink
feat: don't cache metadata cause we are storing it already
Browse files Browse the repository at this point in the history
  • Loading branch information
tdejager committed Sep 29, 2023
1 parent 73f65e6 commit 74b658b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rattler_installs_packages/src/package_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ impl PackageDb {

let mut bytes = Vec::new();
self.http
.request(url, Method::GET, HeaderMap::default(), CacheMode::Default)
.request(url, Method::GET, HeaderMap::default(), CacheMode::NoStore)
.await?
.into_body()
.read_to_end(&mut bytes)
Expand Down

0 comments on commit 74b658b

Please sign in to comment.