S3ResponseError:100继续 - python(appengine)

时间:2014-12-18 12:22:18

标签: python google-app-engine amazon-web-services amazon-s3 boto

我使用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库的版本......

1 个答案:

答案 0 :(得分:5)

又发生了......

boto版本是2.5.2

修复是评论这一行:

headers['Expect'] = '100-Continue'
boto key.py文件中的

来源: https://www.google.com/url?q=https%3A%2F%2Fgithub.com%2Fsminteractive%2Fboto%2Fcommit%2F59b0d6645db736138d87cf47a4c9e49d2a49e01e&sa=D&sntz=1&usg=AFQjCNEJb1UtdqOlhjmQ-NthWZplGOB7oA