Skip to content

Commit

Permalink
Update filter.go to missing when using sliding windows data. (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
borisssmidtCET authored Jul 25, 2023
1 parent 54a5695 commit a621c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/collection/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ var FilterObjectsByMtimeAfter pipeline.StepFn = func(group *pipeline.Group, step
}
for obj := range input {
if ok {
if obj.Mtime.Unix() > cfg {
if obj.Mtime.Unix() >= cfg {
output <- obj
}
}
Expand Down

0 comments on commit a621c7f

Please sign in to comment.