Skip to content

Commit 4c55d97

Browse files
chore: upgrade to Go 1.26.2 (#27391)
* chore: upgrade to Go 1.26.2 * chore: update config.yml for CI
1 parent f9befe3 commit 4c55d97

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
# when updating the go version, should also update the go version in go.mod
88
description: docker tag for cross build container from quay.io . Created by https://github.com/influxdata/edge/tree/master/dockerfiles/cross-builder .
99
type: string
10-
default: go1.24.13-latest
10+
default: go1.26.2-latest
1111

1212
workflow:
1313
type: string

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/influxdata/influxdb
22

3-
go 1.24.0
3+
go 1.26
44

5-
toolchain go1.24.13
5+
toolchain go1.26.2
66

77
require (
88
collectd.org v0.3.0

monitor/service_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func TestMonitor_StoreStatistics(t *testing.T) {
109109
}
110110
if spec.ReplicaN != nil {
111111
if got, want := *spec.ReplicaN, monitor.MonitorRetentionPolicyReplicaN; got != want {
112-
t.Errorf("unexpected replica number: got=%q want=%q", got, want)
112+
t.Errorf("unexpected replica number: got=%d want=%d", got, want)
113113
}
114114
} else {
115115
t.Error("expected replica number in retention policy spec")

0 commit comments

Comments
 (0)