diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-08-01 13:08:10 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-08-01 13:08:10 -0700 |
| commit | 2f03481cb288e1677a489caceaedd870b6960ed3 (patch) | |
| tree | 90cd78ed81aee020d11bff92462a4e84fbf5b2c2 /weed/util/http_util.go | |
| parent | e1f070a9a1699578de4f1513f62453c7a490514f (diff) | |
| download | seaweedfs-2f03481cb288e1677a489caceaedd870b6960ed3.tar.xz seaweedfs-2f03481cb288e1677a489caceaedd870b6960ed3.zip | |
in case when content is not compressed
Diffstat (limited to 'weed/util/http_util.go')
| -rw-r--r-- | weed/util/http_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/util/http_util.go b/weed/util/http_util.go index c67eb3276..b3c5a4033 100644 --- a/weed/util/http_util.go +++ b/weed/util/http_util.go @@ -312,7 +312,7 @@ func readEncryptedUrl(fileUrl string, cipherKey []byte, isContentCompressed bool if isContentCompressed { decryptedData, err = DecompressData(decryptedData) if err != nil { - return fmt.Errorf("unzip decrypt %s: %v", fileUrl, err) + glog.V(0).Info("unzip decrypt %s: %v", fileUrl, err) } } if len(decryptedData) < int(offset)+size { |
