Merge "Fix IllegalArgumentException in AmazonS3"

This commit is contained in:
Shawn Pearce 2015-05-10 14:44:15 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 4ac7cf003b
1 changed files with 1 additions and 3 deletions

View File

@ -489,16 +489,14 @@ private void putImpl(final String bucket, final String key,
final String md5str = Base64.encodeBytes(csum);
final long len = buf.length();
final String lenstr = String.valueOf(len);
for (int curAttempt = 0; curAttempt < maxAttempts; curAttempt++) {
final HttpURLConnection c = open("PUT", bucket, key); //$NON-NLS-1$
c.setRequestProperty("Content-Length", lenstr); //$NON-NLS-1$
c.setFixedLengthStreamingMode(len);
c.setRequestProperty("Content-MD5", md5str); //$NON-NLS-1$
c.setRequestProperty(X_AMZ_ACL, acl);
encryption.request(c, X_AMZ_META);
authorize(c);
c.setDoOutput(true);
c.setFixedLengthStreamingMode((int) len);
monitor.beginTask(monitorTask, (int) (len / 1024));
final OutputStream os = c.getOutputStream();
try {