-
Notifications
You must be signed in to change notification settings - Fork 21
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 to 1.23 #1193
Update go to 1.23 #1193
Conversation
Signed-off-by: Vladislav Byrgazov <vladislav.byrgazov@xored.com>
…rade-go-1.23 Signed-off-by: Vladislav Byrgazov <vladislav.byrgazov@xored.com>
60670d4
to
a7e3353
Compare
Signed-off-by: Vladislav Byrgazov <vladislav.byrgazov@xored.com>
Signed-off-by: Vladislav Byrgazov <vladislav.byrgazov@xored.com>
internal/vppinit/vppinit.go
Outdated
@@ -140,11 +143,11 @@ func getKernelVer() ([2]int, error) { | |||
if err != nil { | |||
return [2]int{}, err | |||
} | |||
min, err := strconv.Atoi(ver[1]) | |||
minValue, err := strconv.Atoi(ver[1]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minValue, err := strconv.Atoi(ver[1]) | |
minor, err := strconv.Atoi(ver[1]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
internal/vppinit/vppinit.go
Outdated
if err != nil { | ||
return [2]int{}, err | ||
} | ||
return [2]int{maj, min}, nil | ||
return [2]int{maj, minValue}, nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return [2]int{maj, minValue}, nil | |
return [2]int{major, minor}, nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
Signed-off-by: Vladislav Byrgazov <vladislav.byrgazov@xored.com>
…d-forwarder-vpp@main PR link: networkservicemesh/cmd-forwarder-vpp#1193 Commit: f2bf8fd Author: Vladislav Byrgazov Date: 2024-11-21 15:00:01 +0500 Message: - Update go to 1.23 (#1193) Signed-off-by: Vladislav Byrgazov <vladislav.byrgazov@xored.com> Signed-off-by: NSMBot <nsmbot@networkservicmesh.io>
…d-forwarder-vpp@main (#12552) PR link: networkservicemesh/cmd-forwarder-vpp#1193 Commit: f2bf8fd Author: Vladislav Byrgazov Date: 2024-11-21 15:00:01 +0500 Message: - Update go to 1.23 (#1193) Signed-off-by: Vladislav Byrgazov <vladislav.byrgazov@xored.com> Signed-off-by: NSMBot <nsmbot@networkservicmesh.io> Co-authored-by: NSMBot <nsmbot@networkservicmesh.io>
Issue: networkservicemesh/deployments-k8s#12294