Skip to content
Open
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
4 changes: 2 additions & 2 deletions command/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ func (s Sync) getSourceAndDestinationObjects(ctx context.Context, cancel context

var (
sorter *extsort.SortTypeSorter
srcOutputChan chan extsort.SortType
srcOutputChan <-chan extsort.SortType
)

sorter, srcOutputChan, srcErrCh := extsort.New(filteredSrcObjectChannel, storage.FromBytes, storage.Less, extsortConfig)
Expand Down Expand Up @@ -413,7 +413,7 @@ func (s Sync) getSourceAndDestinationObjects(ctx context.Context, cancel context

var (
dstSorter *extsort.SortTypeSorter
dstOutputChan chan extsort.SortType
dstOutputChan <-chan extsort.SortType
)

dstSorter, dstOutputChan, dstErrCh := extsort.New(filteredDstObjectChannel, storage.FromBytes, storage.Less, extsortConfig)
Expand Down
Loading