fix: remove required redis configs

This commit is contained in:
Mohamed Sohail 2024-11-04 08:33:14 +03:00
parent 7a64f29dc7
commit 115f6817e6
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
2 changed files with 6 additions and 16 deletions

View File

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

View File

@ -1,17 +1,4 @@
services: services:
redis:
image: redis:7-alpine
restart: unless-stopped
command: redis-server --save 60 1 --loglevel warning
volumes:
- tracker-redis:/data
ports:
- "127.0.0.1:6379:6379"
healthcheck:
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
interval: 10s
timeout: 5s
retries: 5
nats: nats:
image: nats:2 image: nats:2
restart: unless-stopped restart: unless-stopped