From 7b1a713d2a6913f7f2ecb2211f50afd7468ef224 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sat, 26 Feb 2022 03:23:15 -0800 Subject: [PATCH] remove dead code --- weed/filer/filechunk_manifest.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/weed/filer/filechunk_manifest.go b/weed/filer/filechunk_manifest.go index 372901b7d..f2f1c7f16 100644 --- a/weed/filer/filechunk_manifest.go +++ b/weed/filer/filechunk_manifest.go @@ -104,15 +104,6 @@ func fetchChunk(data []byte, lookupFileIdFn wdclient.LookupFileIdFunctionType, f return retriedFetchChunkData(data, urlStrings, cipherKey, isGzipped, true, 0) } -func fetchChunkRange(data []byte, lookupFileIdFn wdclient.LookupFileIdFunctionType, fileId string, cipherKey []byte, isGzipped bool, offset int64) (int, error) { - urlStrings, err := lookupFileIdFn(fileId) - if err != nil { - glog.Errorf("operation LookupFileId %s failed, err: %v", fileId, err) - return 0, err - } - return retriedFetchChunkData(data, urlStrings, cipherKey, isGzipped, false, offset) -} - func retriedFetchChunkData(buffer []byte, urlStrings []string, cipherKey []byte, isGzipped bool, isFullChunk bool, offset int64) (n int, err error) { var shouldRetry bool