App Engine httplib.HTTPConnection截止日期

时间:2011-10-06 11:07:51

标签: python google-app-engine

由于App Engine的 httplib 只是围绕着他们自己的 urlfetch ,我想知道如何将默认的urlfetch超时设置为允许的最长10秒所以它会影响httplib.HTTPConnection

我不能直接在HTTPConnection上设置超时,因为GAE使用2.5。 2.6添加了超时参数。

1 个答案:

答案 0 :(得分:7)

您是否尝试更改默认的urlfetch截止日期?

import urlfetch
urlfetch.set_default_fetch_deadline(10)