Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24
FROM golang:1.25

WORKDIR /app
COPY ../go.mod go.sum ./
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion bin/go
2 changes: 1 addition & 1 deletion bin/gofmt
2 changes: 1 addition & 1 deletion bin/golangci-lint
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/block/polt

go 1.24.0
go 1.25.3

toolchain go1.24.2
toolchain go1.25.6

require (
github.com/alecthomas/kong v0.8.0
Expand All @@ -20,7 +20,7 @@ require (

require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/block/spirit v0.10.1-0.20251125225304-aeb604d5ab50
github.com/block/spirit v0.10.1
github.com/rogpeppe/go-internal v1.11.0 // indirect
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ github.com/aws/aws-sdk-go-v2/service/sts v1.33.9/go.mod h1:f6vjfZER1M17Fokn0Izss
github.com/aws/smithy-go v1.22.1 h1:/HPHZQ0g7f4eUeK6HKglFz8uwVfZKgoI25rb/J+dnro=
github.com/aws/smithy-go v1.22.1/go.mod h1:irrKGvNn1InZwb2d7fkIRNucdfwR8R+Ts3wxYa/cJHg=
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
github.com/block/spirit v0.10.1-0.20251125225304-aeb604d5ab50 h1:9st+E1WsWYTSN30M8GRiR7sd8SVFeIfhi87QaSw6jrQ=
github.com/block/spirit v0.10.1-0.20251125225304-aeb604d5ab50/go.mod h1:7INhot/AwVDUsZ6JxRtFMbe7iXXAfRbCgL/AoIvi6HA=
github.com/block/spirit v0.10.1 h1:JTr5E7gKV3TUx3qX6ftflOk14dEf08pQQhATEigvJQM=
github.com/block/spirit v0.10.1/go.mod h1:lruAfWdjVMrcTem3sMIKVwvcYqDmHlf5Jsz2g/mE+ME=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand Down
2 changes: 1 addition & 1 deletion pkg/stage/stager.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ func (s *Stager) RetryableStageChunk(ctx context.Context, chunk *table.Chunk) er
startTime := time.Now()
var copiedRows int64
var err error
s.Throttler.BlockWait()
s.Throttler.BlockWait(ctx)

for i := range defaultMaxRetries {
copiedRows, err = s.stageChunkWithTx(ctx, i, chunk, s.stageChunk)
Expand Down