Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDanisch committed Aug 12, 2024
2 parents 2160a85 + ff74a9d commit a42cc63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/downloader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct PathDownloader <: AbstractDownloader
lru::LRU{String, Int}
end

function PathDownloader(cache_dir; timeout=5, cache_size_gb=50)
function PathDownloader(cache_dir; timeout=5, cache_size_gb=5)
isdir(cache_dir) || mkpath(cache_dir)
lru = LRU{String, Int}(maxsize=cache_size_gb * 10^9, by=identity)
downloader = Downloads.Downloader()
Expand Down

0 comments on commit a42cc63

Please sign in to comment.