-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update go-sysinfo to v1.1.1 to fix getting distro info on Fedora 30. #14311
Conversation
@andrewkroh @mikemadden42 Looks like the go-sysinfo update breaks the winlogbeat build:
|
IIRC there was a breaking change in the golang.org/x/sys/windows package. elastic/beats needs a vendor/ update to fix the compatibility issue. |
jenkins retest this please |
This will be fixed by @fearful-symmetry 's #15196. |
Can someone help me sort out a change I can make to my go.mod file so I can build a simple winlogbeat under GOOS=windows? I am trying to use beats v7.5.2 and I see the SID.String() returns two args even in v7.6 so if there was a vendor.json change it isn't getting picked up.
I am using go1.13.4 with GO111MODULE=on |
Try setting up your go.mod to use the same version that beats v7.5.2 uses: https://github.com/elastic/beats/blob/v7.5.2/vendor/vendor.json#L3449-L3450 |
No description provided.