From 3be061994fbaecf2bae8ad155064df6b580063d7 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 7 Apr 2021 00:54:06 -0700 Subject: [PATCH] skip connection reset error fix https://github.com/chrislusf/seaweedfs/issues/1971 this is because the connections are pooled but the volume server has reset the connection --- weed/operation/upload_content.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/weed/operation/upload_content.go b/weed/operation/upload_content.go index e891ae03b..40e96fd8c 100644 --- a/weed/operation/upload_content.go +++ b/weed/operation/upload_content.go @@ -235,8 +235,10 @@ func upload_content(uploadUrl string, fillBufferFunction func(w io.Writer) error // print("+") resp, post_err := HttpClient.Do(req) if post_err != nil { - glog.Errorf("upload %s %d bytes to %v: %v", filename, originalDataSize, uploadUrl, post_err) - debug.PrintStack() + if !strings.Contains(post_err.Error(), "connection reset by peer"){ + glog.Errorf("upload %s %d bytes to %v: %v", filename, originalDataSize, uploadUrl, post_err) + debug.PrintStack() + } return nil, fmt.Errorf("upload %s %d bytes to %v: %v", filename, originalDataSize, uploadUrl, post_err) } // print("-")