Error:
boto.glacier.exceptions.UploadArchiveError: An error occurred while uploading an archive: 'ascii' codec can't decode byte 0x8b in position 1: ordinal not in range(128)
But after I edit the layer1.py file, it works.
a) Open this file:
/usr/local/lib/python2.7/dist-packages/boto-2.34.0-py2.7.egg/boto/glacier/layer1.py
b) Add str() function for last code in the file:
uri = 'vaults/%s/multipart-uploads/%s' % (str(vault_name), upload_id)
c) Save it and backup file to glacier.
Error:
boto.glacier.exceptions.UploadArchiveError: An error occurred while uploading an archive: 'ascii' codec can't decode byte 0x8b in position 1: ordinal not in range(128)
But after I edit the layer1.py file, it works.
a) Open this file:
/usr/local/lib/python2.7/dist-packages/boto-2.34.0-py2.7.egg/boto/glacier/layer1.py
b) Add str() function for last code in the file:
uri = 'vaults/%s/multipart-uploads/%s' % (str(vault_name), upload_id)
c) Save it and backup file to glacier.