core/redis: remove comment (#4843)

This commit is contained in:
Caleb Doxsey 2023-12-07 15:55:02 -07:00 committed by GitHub
parent 5ccd7a520a
commit 73c27e88e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,