From 03b70c3b150e5c6c838c80d0d0cf81a2cab7bd6a Mon Sep 17 00:00:00 2001 From: Tudor Golubenco Date: Fri, 13 Jan 2017 11:24:37 +0200 Subject: [PATCH] Follow up with changelog for 3338 (#3363) --- CHANGELOG.asciidoc | 1 + filebeat/prospector/prospector.go | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 520f21ce48d..38ae6bd99a1 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -47,6 +47,7 @@ https://github.com/elastic/beats/compare/v5.1.1...master[Check the HEAD diff] *Filebeat* - Fix registry cleanup issue when files falling under ignore_older after restart. {issue}2818[2818] - Fix registry migration issue from old states were files were only harvested after second restart. {pull}3322[3322] +- Fix alignment issue were Filebeat compiled with Go 1.7.4 was crashing on 32 bits system. {issue}3273[3273] *Winlogbeat* - Fix for "The array bounds are invalid" error when reading large events. {issue}3076[3076] diff --git a/filebeat/prospector/prospector.go b/filebeat/prospector/prospector.go index 790baacbfd3..74d5a584737 100644 --- a/filebeat/prospector/prospector.go +++ b/filebeat/prospector/prospector.go @@ -23,6 +23,7 @@ var ( ) type Prospector struct { + // harvesterCount MUST be first field in struct. See https://github.com/golang/go/issues/599 harvesterCounter uint64 // Must be 8-byte aligned. Ensured if first field in struct cfg *common.Config // Raw config config prospectorConfig