From 98d3e307f0f59c94f2493be16cb27d27e3fadd1d Mon Sep 17 00:00:00 2001 From: Ryan O'Horo <10855297+ryanohoro@users.noreply.github.com> Date: Wed, 21 Feb 2024 16:25:36 -0600 Subject: [PATCH] Fix bad filestream comment Comment documented an exclusion in the wrong direction --- src/go/cmd/strelka-filestream/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/go/cmd/strelka-filestream/main.go b/src/go/cmd/strelka-filestream/main.go index 229c476c..ad930190 100644 --- a/src/go/cmd/strelka-filestream/main.go +++ b/src/go/cmd/strelka-filestream/main.go @@ -202,7 +202,7 @@ func main() { continue } - // Ignore older files + // Temporarily ignore newly written files if t.Sub(fi.ModTime()) < conf.Delta { continue }