Skip to content

Commit

Permalink
chore: change from info to warn when invalid shard IDs found in path
Browse files Browse the repository at this point in the history
  • Loading branch information
gwossum committed Nov 8, 2024
1 parent 739b627 commit eb7d122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsdb/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -2549,7 +2549,7 @@ func (s *Store) findShards(log *zap.Logger) ([]shardInfo, error) {
// Shard file names are numeric shardIDs
shardID, err := strconv.ParseUint(sh.Name(), 10, 64)
if err != nil {
log.Info("invalid shard ID found at path", zap.String("path", fullPath))
log.Warn("invalid shard ID found at path", zap.String("path", fullPath))
continue
}

Expand Down

0 comments on commit eb7d122

Please sign in to comment.