Browse Source
Merge pull request #1491 from hilimd/master
s3: fix get object metadata problem
pull/1502/head
Chris Lu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
weed/s3api/s3api_object_handlers.go
|
@ -265,7 +265,7 @@ func (s3a *S3ApiServer) proxyToFiler(w http.ResponseWriter, r *http.Request, des |
|
|
|
|
|
|
|
|
resp, postErr := client.Do(proxyReq) |
|
|
resp, postErr := client.Do(proxyReq) |
|
|
|
|
|
|
|
|
if resp.ContentLength == -1 { |
|
|
|
|
|
|
|
|
if resp.ContentLength == -1 && !strings.HasSuffix(destUrl, "/") { |
|
|
writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL) |
|
|
writeErrorResponse(w, s3err.ErrNoSuchKey, r.URL) |
|
|
return |
|
|
return |
|
|
} |
|
|
} |
|
|