From 5f8903ff1e5958b69791cb0d194c76b5e7ad25be Mon Sep 17 00:00:00 2001 From: macneale4 Date: Wed, 12 Feb 2025 19:48:20 +0000 Subject: [PATCH] [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh --- go/libraries/doltcore/remotestorage/chunk_fetcher.go | 3 +-- go/store/datas/pull/puller.go | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/go/libraries/doltcore/remotestorage/chunk_fetcher.go b/go/libraries/doltcore/remotestorage/chunk_fetcher.go index b8eba73d48..6cd0987e41 100644 --- a/go/libraries/doltcore/remotestorage/chunk_fetcher.go +++ b/go/libraries/doltcore/remotestorage/chunk_fetcher.go @@ -24,6 +24,7 @@ import ( "github.com/cenkalti/backoff/v4" "github.com/dolthub/gozstd" + lru "github.com/hashicorp/golang-lru/v2" "golang.org/x/sync/errgroup" "google.golang.org/grpc" @@ -33,8 +34,6 @@ import ( "github.com/dolthub/dolt/go/libraries/doltcore/remotestorage/internal/reliable" "github.com/dolthub/dolt/go/store/hash" "github.com/dolthub/dolt/go/store/nbs" - - "github.com/hashicorp/golang-lru/v2" ) // A remotestorage.ChunkFetcher is a pipelined chunk fetcher for fetching a diff --git a/go/store/datas/pull/puller.go b/go/store/datas/pull/puller.go index c215988689..b3b27d5f1a 100644 --- a/go/store/datas/pull/puller.go +++ b/go/store/datas/pull/puller.go @@ -28,10 +28,10 @@ import ( "sync/atomic" "time" - "github.com/dolthub/dolt/go/libraries/doltcore/remotestorage" "golang.org/x/sync/errgroup" "github.com/dolthub/dolt/go/libraries/doltcore/dconfig" + "github.com/dolthub/dolt/go/libraries/doltcore/remotestorage" "github.com/dolthub/dolt/go/store/chunks" "github.com/dolthub/dolt/go/store/hash" "github.com/dolthub/dolt/go/store/nbs"