From 46963c1d42b634b8d2e82323b087ccdaf6351ab7 Mon Sep 17 00:00:00 2001 From: Daniil Porokhnin Date: Wed, 18 Mar 2026 14:25:05 +0300 Subject: [PATCH 1/2] chore: go1.26 --- build/package/Dockerfile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/package/Dockerfile b/build/package/Dockerfile index 8d9da1f9..cb531c53 100644 --- a/build/package/Dockerfile +++ b/build/package/Dockerfile @@ -2,7 +2,7 @@ ARG GO_VERSION ARG APP_IMAGE=ubuntu:latest # Build -FROM golang:${GO_VERSION:-1.24} AS build +FROM golang:${GO_VERSION:-1.26} AS build WORKDIR /seq-db diff --git a/go.mod b/go.mod index 4e9a15e6..d2bf87ed 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ozontech/seq-db -go 1.24.6 +go 1.26 require ( contrib.go.opencensus.io/exporter/jaeger v0.2.1 From f42b5ab73702b55a8e0ec9d788cdc014d810ad7f Mon Sep 17 00:00:00 2001 From: Daniil Porokhnin Date: Wed, 18 Mar 2026 16:03:11 +0300 Subject: [PATCH 2/2] chore: please linter --- proxy/search/ingestor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/search/ingestor.go b/proxy/search/ingestor.go index b8e01784..77e297ea 100644 --- a/proxy/search/ingestor.go +++ b/proxy/search/ingestor.go @@ -215,7 +215,7 @@ func (si *Ingestor) singleDocsStream(ctx context.Context, explain bool, source u startTime := time.Now() host, has := si.clientBySource[source] if !has { - return nil, fmt.Errorf("can't fetch: no host for source %q", source) + return nil, fmt.Errorf("can't fetch: no host for source %d", source) } client, has := si.clients[host] if !has {