From 2d519c6cb6b2630435142dd6abdc8e5eeb30cd4a Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 13 Aug 2021 11:13:30 -0700 Subject: [PATCH] adjust the retry logic --- weed/filer/filechunk_manifest.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/weed/filer/filechunk_manifest.go b/weed/filer/filechunk_manifest.go index 2115e7856..dbc851496 100644 --- a/weed/filer/filechunk_manifest.go +++ b/weed/filer/filechunk_manifest.go @@ -143,6 +143,7 @@ func retriedStreamFetchChunkData(writer io.Writer, urlStrings []string, cipherKe writer.Write(data) written += len(data) }) + shouldRetry = shouldRetry && written == 0 if !shouldRetry { break } @@ -155,7 +156,7 @@ func retriedStreamFetchChunkData(writer io.Writer, urlStrings []string, cipherKe break } } - if err != nil && shouldRetry && written > 0 { + if err != nil && shouldRetry { glog.V(0).Infof("retry reading in %v", waitTime) time.Sleep(waitTime) } else {