fix: remove required redis configs

This commit is contained in:
2024-11-04 08:33:14 +03:00
parent 7a64f29dc7
commit 115f6817e6
2 changed files with 6 additions and 16 deletions

View File

@@ -79,15 +79,18 @@ func main() {
os.Exit(1)
}
cache, err := cache.New(cache.CacheOpts{
cacheOpts := cache.CacheOpts{
Chain: chain,
Registries: ko.Strings("bootstrap.ge_registries"),
Watchlist: ko.Strings("bootstrap.watchlist"),
Blacklist: ko.Strings("bootstrap.blacklist"),
CacheType: ko.MustString("core.cache_type"),
RedisDSN: ko.MustString("redis.dsn"),
Logg: lo,
})
}
if ko.MustString("core.cache_type") == "redis" {
cacheOpts.RedisDSN = ko.MustString("redis.dsn")
}
cache, err := cache.New(cacheOpts)
if err != nil {
lo.Error("could not initialize cache", "error", err)
os.Exit(1)