Skip to content

Commit 0717dc1

Browse files
Merge pull request #629 from danwinship/art-update
OCPBUGS-34279: ART sync and golang 1.22 update
2 parents b392d64 + 90e3aba commit 0717dc1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.ci-operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
build_root_image:
22
name: release
33
namespace: openshift
4-
tag: rhel-9-release-golang-1.21-openshift-4.17
4+
tag: rhel-9-release-golang-1.22-openshift-4.17

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openshift/sdn
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/containernetworking/cni v0.8.1

images/kube-proxy/Dockerfile.rhel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.21-openshift-4.17 AS builder
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17 AS builder
22
WORKDIR /go/src/github.com/openshift/sdn
33
COPY . .
44
RUN make build --warn-undefined-variables

pkg/network/node/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ func (node *OsdnNode) reattachPods(existingPodSandboxes map[string]*kruntimeapi.
381381
return err
382382
}
383383
start := time.Now()
384-
defer klog.V(2).Infof("reattachPods took %v", time.Since(start))
384+
defer func() { klog.V(2).Infof("reattachPods took %v", time.Since(start)) }()
385385
node.podManager.setReattachPodsCache(pods)
386386
for sandboxID, podInfo := range existingOFPodNetworks {
387387
sandbox, ok := existingPodSandboxes[sandboxID]

0 commit comments

Comments
 (0)