rm func CheckAllChunkViews

This commit is contained in:
Konstantin Lebedev 2021-05-21 16:05:59 +05:00
parent 26a4f34a57
commit 3325b850cc

View file

@ -3,7 +3,6 @@ package filer
import ( import (
"bytes" "bytes"
"fmt" "fmt"
"golang.org/x/sync/errgroup"
"io" "io"
"math" "math"
"strings" "strings"
@ -59,20 +58,6 @@ func StreamContent(masterClient wdclient.HasLookupFileIdFunction, w io.Writer, c
} }
func CheckAllChunkViews(chunkViews []*ChunkView, fileId2Url *map[string][]string, gErr *errgroup.Group) {
for _, chunkView := range chunkViews {
urlStrings := (*fileId2Url)[chunkView.FileId]
glog.V(9).Infof("Check chunk: %+v\n url: %+v", chunkView, urlStrings)
if !chunkView.IsFullChunk() {
continue
}
gErr.Go(func() error {
_, err := retriedFetchChunkData(urlStrings, chunkView.CipherKey, chunkView.IsGzipped, false, 0, 2)
return err
})
}
}
// ---------------- ReadAllReader ---------------------------------- // ---------------- ReadAllReader ----------------------------------
func ReadAll(masterClient *wdclient.MasterClient, chunks []*filer_pb.FileChunk) ([]byte, error) { func ReadAll(masterClient *wdclient.MasterClient, chunks []*filer_pb.FileChunk) ([]byte, error) {