I found this command line app for windows that does a pretty good job of
multipart uploads. http://sprightlysoft.com/S3Upload/

If you turn on the option *SaveETagInMetadataForMultipart* then the real
md5sum for that part is written in the metadata under "
x-amz-meta-multipart-etag"

So to make the two compatible, I changed line 636 in s3cmd

if info["headers"].has_key("x-amz-meta-multipart-etag"):
output(u"   MD5 sum:   %s" % info['headers'][''])
else:
output(u"   MD5 sum:   %s" % info['headers']['etag'].strip('"'))

Seems to be working pretty well as part of my backup solution. After
someone made a 12GB commit into SVN. Uggh.

--
James
------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
S3tools-general mailing list
S3tools-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/s3tools-general

Reply via email to