Skip to content

Commit

Permalink
[read_data_files] Do not warn about ts count when using idFilter (#3871)
Browse files Browse the repository at this point in the history
  • Loading branch information
linasm authored Oct 26, 2021
1 parent 597b95d commit aae5af3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/tools/read_data_files/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func main() {
seriesCount++
}

if seriesCount != reader.Entries() {
if seriesCount != reader.Entries() && *idFilter == "" {
log.Warnf("actual time series count (%d) did not match info file data (%d)",
seriesCount, reader.Entries())
}
Expand Down

0 comments on commit aae5af3

Please sign in to comment.