-
-
Notifications
You must be signed in to change notification settings - Fork 910
Renamed function compute_content_md5 stll used in S3.py #1312
Copy link
Copy link
Closed
Labels
Milestone
Description
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})Reactions are currently unavailable