I'm having some trouble loading an RSS feed in my app. It works
locally, but as soon as I deploy, it crashes. From the searching I've
done, I've seen that timeouts can be an issue when using urlfetch, but
this error shows up within a second or so, so it shouldn't be anywhere
near the five second timeout. Any idea what's going on here? What
can I do to debug it? Thanks.
Here's the relevant sections of my code:
from google.appengine.api import urlfetch
...
result = urlfetch.fetch('http://news.ycombinator.com/rss')
Here's the error message:
...
result = urlfetch.fetch('http://news.ycombinator.com/rss')
File "/base/python_lib/versions/1/google/appengine/api/urlfetch.py",
line 241, in fetch
return rpc.get_result()
File "/base/python_lib/versions/1/google/appengine/api/
apiproxy_stub_map.py", line 458, in get_result
return self.__get_result_hook(self)
File "/base/python_lib/versions/1/google/appengine/api/urlfetch.py",
line 325, in _get_fetch_result
raise DownloadError(str(err))
DownloadError: ApplicationError: 2
-Nogwater
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---