Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed Oct 14, 2024
1 parent 55e7b0d commit 8bfbe7b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/pkg/cache/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ func (c redisCache) Get(ctx context.Context, key string, value any) (bool, error
func (c redisCache) MGet(ctx context.Context, keys []string, result any) error {
results, err := c.ru.Do(ctx, c.ru.B().Mget().Key(keys...).Build()).ToArray()
if err != nil {
//nolint:errorlint
if err == rueidis.Nil {
return nil
}
Expand Down

0 comments on commit 8bfbe7b

Please sign in to comment.