Skip to content

update go net version and go verion #1268

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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

eamora-ab
Copy link
Contributor

No description provided.

@dosubot dosubot bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Mar 25, 2025
@dosubot dosubot bot added size:L This PR changes 100-499 lines, ignoring generated files. go Pull requests that update Go code and removed size:S This PR changes 10-29 lines, ignoring generated files. labels Mar 25, 2025
@@ -30,7 +31,7 @@ func newVXLANHandler(port int, vnis []int) (*vxlanHandle, error) {
vxlanHandle := &vxlanHandle{}
con, err := net.ListenUDP("udp", &addr)
if err != nil {
return nil, fmt.Errorf(err.Error())
return nil, fmt.Errorf("failed to create VXLANHandler: %w", err)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something needed to change here cause Go 1.24 causes an error when we use fmt.Errorf without args. That said I could have easily instead just done return nil, err or return nil, fmt.Error(err.Error()) of something like that if we preferred.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I removed the entire jekyll site since a) it was flagged with vulns from old ruby gem versions and b) it appeared unused.

@buger
Copy link
Owner

buger commented Apr 5, 2025

Its fair, reduce vurneability surface

Copy link

sonarqubecloud bot commented Apr 5, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
go Pull requests that update Go code size:L This PR changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants