I have a urllib2 fetch in my code. This GET request takes more than
10s. The code for this is executed as a task but still the timeout is
10s.
Pseudo code:
#handler1
taskqueue.add(some_task)

#taskqueuehandler
class some_task_handler:
     #do something...
     result = urllib2.urlopen(urllib2.Request(url,
urllib.urlencode(values))).read()
     #do something with result...

But this request inspite of being executed as in a task has a timeout
of only 10s.

Please help,
Aman

-- 
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.

Reply via email to