@dloomer Try creating dummy tasks and see if problem persists. May have to
tweak the code below if you are not using default queue.
class TaskCreateDispatcher(webapp.RequestHandler):
def get(self, *args):
ntask = min(100, int(args[0]) )
tasks = []
for i in range(ntask):
tasks.append( Task(url='/task/noop', countdown=i) )
Queue().add( tasks )
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write("Created %d tasks\n" % ntask)
class TaskNoopDispatcher(webapp.RequestHandler):
def post(self, *args):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write("Task\n")
--
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.