Merge pull request #1491 from hilimd/master

s3:  fix get object metadata problem
This commit is contained in:
Chris Lu
2020-09-25 02:35:00 -07:00
committed by GitHub

View File

@@ -265,7 +265,7 @@ func (s3a *S3ApiServer) proxyToFiler(w http.ResponseWriter, r *http.Request, des
resp, postErr := client.Do(proxyReq)
if resp.ContentLength == -1 {
if resp.ContentLength == -1 && !strings.HasSuffix(destUrl, "/") {
writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL)
return
}