From 73c27e88e05e1a90c17578fefed7bf30e2554373 Mon Sep 17 00:00:00 2001 From: Caleb Doxsey Date: Thu, 7 Dec 2023 15:55:02 -0700 Subject: [PATCH] core/redis: remove comment (#4843) --- internal/registry/inmemory/inmemory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/registry/inmemory/inmemory.go b/internal/registry/inmemory/inmemory.go index b00c9fc6f..0edb97cac 100644 --- a/internal/registry/inmemory/inmemory.go +++ b/internal/registry/inmemory/inmemory.go @@ -33,7 +33,7 @@ type inMemoryKey struct { } // New constructs a new registry tracking service that operates in RAM -// as such, it is not usable for multi-node deployment where REDIS or other alternative should be used +// as such, it is not usable for multi-node deployment. func New(ctx context.Context, ttl time.Duration) registry.Interface { srv := &inMemoryServer{ ttl: ttl,