我使用boto python库(在appengine中)几年才能将文件上传到AWS S3。 对于代码的没有新的更改,我在尝试更改S3上的文件时开始出现以下错误(在随机情况下)。发生错误后,文件不会更新。
我的代码是:
if website_bucket is not None:
new_key = Key(website_bucket)
new_key.key = "live/"+page_domain+"/"+s3_name
new_key.set_metadata('original_filename', s3_name)
if s3_name == "sitemap.xml":
new_key.set_metadata('Content-Type', 'text/xml')
else:
new_key.set_metadata('Content-Type', 'text/html')
new_key.set_contents_from_string(page_html, policy='public-read')
return s3_name
错误是:
in file /boto/s3/key.py", line 684, in sender
S3ResponseError: S3ResponseError: 100 Continue
我不知道boto库的版本......
答案 0 :(得分:5)
又发生了......
boto版本是2.5.2
修复是评论这一行:
headers['Expect'] = '100-Continue'
boto key.py文件中的