Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

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/ozontech/seq-db

go 1.24.6
go 1.26

require (
contrib.go.opencensus.io/exporter/jaeger v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion proxy/search/ingestor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading