Open GoogleCodeExporter opened 9 years ago
We simply hit the deadline of urlfetch.fetch() which defaults to 5 seconds on
that file. You can easily reproduce it for example on http://shell.appspot.com
with the following code snippet:
from google.appengine.api import urlfetch
# the following fails (most likely)
f =
urlfetch.urlfetch("https://svn.blender.org/svnroot/bfblender/trunk/blender/sourc
e/blender/blenloader/intern/readfile.c?rev=35577")
# and with increased deadline it should work
f =
urlfetch.urlfetch("https://svn.blender.org/svnroot/bfblender/trunk/blender/sourc
e/blender/blenloader/intern/readfile.c?rev=35577", deadline=10)
Original comment by albrecht.andi
on 18 Mar 2011 at 7:56
Wow. Great test case playground. Thanks for sharing.
Original comment by techtonik@gmail.com
on 18 Mar 2011 at 4:04
Original comment by albrecht.andi
on 6 Apr 2012 at 6:20
Original issue reported on code.google.com by
dfeli...@gmail.com
on 17 Mar 2011 at 5:26