Python龙卷风AsyncHTTPClient 599

时间:2017-01-22 22:51:20

标签: python tornado

我尝试使用AsyncHTTPClient发送异步PUT请求,但龙卷风在request_timeout之前返回HTTP 599错误。

1 个答案:

答案 0 :(得分:0)

我通过写体=""解决了这个问题。要求:

 req = tornado.httpclient.HTTPRequest(url,
                                     method="PUT",
                                     request_timeout=10,
                                     headers=headers,
                                     **body=""**)

龙卷风无法发送空身的投放请求。