[google-appengine] Re: Anyone gives some advice to me please.

2009-09-22 Thread stelg
Maybe the executed task has an error or does it respond a 303 HTTP code? To empty the task queue make sure that the Task function that is executed returns ONLY a HTTP 200 reply. (Put simple dummy code and upload this) That works fine. The queue will be made empty. Check your LOG in de admin cons

[google-appengine] Re: Anyone gives some advice to me please.

2009-09-23 Thread gimme
I checked my log , and the server returns a HTTP 200 reply As the doc said, the task may be removed a week later? and there's no way to NOTIFY the task with the same name to be executed again in these days. - - "POST /task_test HTTP/1.1" 200 124 "AppEngine-Google; (+http:// code.google.com/appeng

[google-appengine] Re: Anyone gives some advice to me please.

2009-09-24 Thread Wooble
You're confusing two different things. When the task successfully completes, it's removed from the queue. However, a "tombstone" is left behind to allow you to use task names to enforce "once only" semantics. You almost certainly shouldn't rely on being able to execute a task with the same name