On Wed, Jul 10, 2013 at 3:04 AM, Jitender Bhatia < [email protected]> wrote:
> Did you ever find any way to stop the tasks ? > > On Thursday, November 11, 2010 6:21:07 PM UTC+5:30, Ivan Uemlianin wrote: >> >> We are running a very simple app on the appengine. We're using django- >> nonrel, but the app is not very complicated. >> >> In particular, there seems to be no need to use the task queue, so I >> have commented out the relevant line in our app.yaml >> >> However, the logs show that the task queue is still active --- or >> rather, it exists, but in a broken state: tasks pile up in the queue, >> and 404s pile up in the logs >> > Hello Jitender, Do you need to stop the task queue in general, or stop the task generation by django-nonrel? If you need to stop the task queue, you can use the "Pause Queue" button in the Task Queue screen: http://imgur.com/7pHUWeO If you need to stop task generation by django-nonrel, you should know that django and miscellaneous plugins need to create tasks for their background work. If you need to figure out what parts of django are generating tasks, you can inspect the task's information by going to the queue information screen and clicking on an individual task. For example, here's a picture of one of my tasks: http://imgur.com/dFvpB1Y ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
