From 6fa70a8711e0b9d9e4da664d9ff1b11d3d88b636 Mon Sep 17 00:00:00 2001 From: Lukasz Janyst Date: Tue, 3 May 2022 10:17:03 +0200 Subject: [PATCH] cleanup: Remove the cache location from settings --- pkg/config/settings/settings.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/config/settings/settings.go b/pkg/config/settings/settings.go index 550363b..e516e41 100644 --- a/pkg/config/settings/settings.go +++ b/pkg/config/settings/settings.go @@ -30,7 +30,6 @@ const ( AllowProxyKey = "AllowProxy" CacheEnabledKey = "CacheEnabled" CacheCompressionKey = "CacheCompression" - CacheLocationKey = "CacheLocation" CacheMinFreeAbsKey = "CacheMinFreeAbs" CacheMinFreeRatKey = "CacheMinFreeRat" CacheConcurrencyRead = "CacheConcurrentRead" @@ -70,7 +69,6 @@ func (s *Settings) setDefaultValues() { s.setDefault(AllowProxyKey, "false") s.setDefault(CacheEnabledKey, "true") s.setDefault(CacheCompressionKey, "true") - s.setDefault(CacheLocationKey, "") s.setDefault(CacheMinFreeAbsKey, "250000000") s.setDefault(CacheMinFreeRatKey, "") s.setDefault(CacheConcurrencyRead, "16")