Skip to content

Commit cae62c5

Browse files
authored
fix: too many concurrent timer firings (#5283)
Upgrade to Go1.23.3, to address fatal crash observed in production. golang/go#69882
1 parent 4d48f3c commit cae62c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# syntax=docker/dockerfile:1
33

44
# GO_VERSION is updated automatically to match go.mod, see Makefile
5-
ARG GO_VERSION=1.23.2
5+
ARG GO_VERSION=1.23.3
66
ARG ALPINE_VERSION=3.20
77
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder
88
ARG VERSION

go.mod

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

3-
go 1.23.2
3+
go 1.23.3
44

55
// Addressing snyk vulnerabilities in indirect dependencies
66
// When upgrading a dependency, please make sure that

suppression-backup-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# GO_VERSION is updated automatically to match go.mod, see Makefile
4-
ARG GO_VERSION=1.23.2
4+
ARG GO_VERSION=1.23.3
55
ARG ALPINE_VERSION=3.20
66
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder
77
RUN mkdir /app

0 commit comments

Comments
 (0)