Skip to content

Commit

Permalink
Fix the wrong event type for a new file (#36098)
Browse files Browse the repository at this point in the history
It's supposed to emit a `create` event, not a `write` event when a
previously ignored empty file gets written to.
  • Loading branch information
rdner authored Jul 18, 2023
1 parent 57d649d commit f52d38a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions filebeat/input/filestream/fswatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ func (w *fileWatcher) watch(ctx unison.Canceler) {
// no need to react on empty new files
if fd.Info.Size() == 0 {
w.log.Warnf("file %q has no content yet, skipping", fd.Filename)
delete(paths, path)
continue
}
select {
Expand Down
3 changes: 1 addition & 2 deletions filebeat/input/filestream/fswatch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,7 @@ scanner:
e := fw.Event()
expEvent := loginp.FSEvent{
NewPath: filename,
OldPath: filename,
Op: loginp.OpWrite,
Op: loginp.OpCreate,
Descriptor: loginp.FileDescriptor{
Filename: filename,
Info: testFileInfo{name: basename, size: 5}, // +5 bytes appended
Expand Down

0 comments on commit f52d38a

Please sign in to comment.