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"