Google App Engine Task Queues

How to remove a task from the task queue? Is the Google App Engine task queue deleted from the queue after it has completed?

+3
source share
3 answers

The task queue API defines only a function for adding tasks. He will remove them when they are completed.

However, you can manually delete them using the admin console.

Details: http://code.google.com/appengine/docs/python/taskqueue/overview.html#Managing_Task_Queues

+3
source

, , HTTP 200. , .

, .

+3

Tasks can be deleted using the function delete_tasks.

More details: https://developers.google.com/appengine/docs/python/taskqueue/queues#Queue_delete_tasks

+1
source

Source: https://habr.com/ru/post/1746603/


All Articles