From 19772d70d7c56a06cfda85aad9b8a932eca93b25 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 24 Oct 2020 00:12:02 -0700 Subject: [PATCH] print for debugging --- weed/operation/upload_content.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/weed/operation/upload_content.go b/weed/operation/upload_content.go index dc92125a8..a4148cb22 100644 --- a/weed/operation/upload_content.go +++ b/weed/operation/upload_content.go @@ -230,12 +230,14 @@ func upload_content(uploadUrl string, fillBufferFunction func(w io.Writer) error if jwt != "" { req.Header.Set("Authorization", "BEARER "+string(jwt)) } + // 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() return nil, fmt.Errorf("upload %s %d bytes to %v: %v", filename, originalDataSize, uploadUrl, post_err) } + // print("-") defer util.CloseResponse(resp) var ret UploadResult