How can I remove a task from a task queue? Is Google App Engine Task Queue removes the task from the queue after it is executed?
+3
A:
The task queue API only specifies a function for adding tasks. It will remove them when they complete.
You can, however, manually remove them using the admin console.
Details: http://code.google.com/appengine/docs/python/taskqueue/overview.html#Managing_Task_Queues
David Underhill
2010-05-21 18:46:44
+2
A:
A task is removed from the queue when it executes if and only if it returns an HTTP 200 response. For any other response, it will be retried until it successfully executes.
As dound indicates, they can also be manually removed.
Wooble
2010-05-22 18:54:11