Skip to content

Avoid spurious warning when uploading empty file using an InputStream. #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 8, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/main/java/com/amazonaws/services/s3/AmazonS3Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,8 @@ public PutObjectResult putObject(PutObjectRequest putObjectRequest)
request.addHeader(Headers.STORAGE_CLASS, putObjectRequest.getStorageClass());
}

if (metadata.getContentLength() <= 0) {
// Use internal interface to differentiate 0 from unset.
if (metadata.getRawMetadata().get(Headers.CONTENT_LENGTH) == null) {
/*
* There's nothing we can do except for let the HTTP client buffer
* the input stream contents if the caller doesn't tell us how much
Expand Down