diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-10-24 00:12:02 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-10-24 00:12:02 -0700 |
| commit | 19772d70d7c56a06cfda85aad9b8a932eca93b25 (patch) | |
| tree | cd9abf020a370cb8bb2d3eb3da09960c9b6231d7 | |
| parent | 5b92dfe3028907d24fa8a8f28551addebb74dba6 (diff) | |
| download | seaweedfs-19772d70d7c56a06cfda85aad9b8a932eca93b25.tar.xz seaweedfs-19772d70d7c56a06cfda85aad9b8a932eca93b25.zip | |
print for debugging
| -rw-r--r-- | weed/operation/upload_content.go | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
