We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I found out that there is sill one line in S3.py that uses compute_content_md5 instead of generate_content_md5. The diff is below.
diff --git a/S3/S3.py b/S3/S3.py index 9bf2e92..57275f7 100644 --- a/S3/S3.py +++ b/S3/S3.py @@ -1088,7 +1088,7 @@ class S3(object): body += '<Status>%s</Status>' % status body += '</VersioningConfiguration>' debug(u"set_versioning(%s)" % body) - headers['content-md5'] = compute_content_md5(body) + headers['content-md5'] = generate_content_md5(body) request = self.create_request("BUCKET_CREATE", uri = uri, headers = headers, body = body, uri_params = {'versioning': None})
The text was updated successfully, but these errors were encountered:
#1290
Sorry, something went wrong.
Should now be resolved in Master #1340 that was merged.
No branches or pull requests
I found out that there is sill one line in S3.py that uses compute_content_md5 instead of generate_content_md5. The diff is below.
The text was updated successfully, but these errors were encountered: