From cae62c50ea5f4fa614071bd7265e586780e1935b Mon Sep 17 00:00:00 2001 From: Leonidas Vrachnis Date: Mon, 11 Nov 2024 10:31:11 +0100 Subject: [PATCH] fix: too many concurrent timer firings (#5283) Upgrade to Go1.23.3, to address fatal crash observed in production. https://github.com/golang/go/issues/69882 --- Dockerfile | 2 +- go.mod | 2 +- suppression-backup-service/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0eef2a98b1..a38c0b66ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/go.mod b/go.mod index 996b447821..65f7cf3b51 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/suppression-backup-service/Dockerfile b/suppression-backup-service/Dockerfile index a46eb9bc24..f10a80d4e2 100644 --- a/suppression-backup-service/Dockerfile +++ b/suppression-backup-service/Dockerfile @@ -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