del checks

url err logging
stats chunk fetch
This commit is contained in:
Konstantin Lebedev
2021-05-21 15:59:12 +05:00
parent 42f631f549
commit 26a4f34a57
6 changed files with 17 additions and 23 deletions

View File

@@ -52,7 +52,7 @@ func (f *Filer) maybeReloadFilerConfiguration(event *filer_pb.SubscribeMetadataR
func (f *Filer) readEntry(chunks []*filer_pb.FileChunk) ([]byte, error) {
var buf bytes.Buffer
err := StreamContent(f.MasterClient, &buf, chunks, 0, math.MaxInt64, false)
err := StreamContent(f.MasterClient, &buf, chunks, 0, math.MaxInt64)
if err != nil {
return nil, err
}