forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix panic due to unaligned atomic uint64 access (elastic#6148)
There was a bug impacting 32-bit platforms where an atomic.Uint64 was not aligned to a 64 bit boundary, causing the log prospector to panic on startup. Instead of reordering the field to the start of the struct to guarantee alignment, which is brittle, this patch just changes the harvester limit to be a 32-bit unsigned integer. Closes elastic#6145
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters