Skip to content

Commit

Permalink
chore(redis): change cache to scan cache in a log message
Browse files Browse the repository at this point in the history
Signed-off-by: knqyf263 <[email protected]>
  • Loading branch information
knqyf263 committed Jun 27, 2024
1 parent 1ab584e commit 2868b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cache/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func NewRedisCache(backend, caCertPath, certPath, keyPath string, enableTLS bool
return RedisCache{}, xerrors.Errorf("failed to create Redis options: %w", err)
}

log.Info("Redis cache", log.String("url", opts.BackendMasked()))
log.Info("Redis scan cache", log.String("url", opts.BackendMasked()))
options, err := redis.ParseURL(opts.Backend)
if err != nil {
return RedisCache{}, xerrors.Errorf("failed to parse Redis URL: %w", err)
Expand Down

0 comments on commit 2868b08

Please sign in to comment.