Skip to content

Commit

Permalink
fix: too many concurrent timer firings (#5283)
Browse files Browse the repository at this point in the history
Upgrade to Go1.23.3, to address fatal crash observed in production.

golang/go#69882
  • Loading branch information
lvrach authored Nov 11, 2024
1 parent 4d48f3c commit cae62c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# syntax=docker/dockerfile:1

# GO_VERSION is updated automatically to match go.mod, see Makefile
ARG GO_VERSION=1.23.2
ARG GO_VERSION=1.23.3
ARG ALPINE_VERSION=3.20
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/rudderlabs/rudder-server

go 1.23.2
go 1.23.3

// Addressing snyk vulnerabilities in indirect dependencies
// When upgrading a dependency, please make sure that
Expand Down
2 changes: 1 addition & 1 deletion suppression-backup-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

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

0 comments on commit cae62c5

Please sign in to comment.