I have an application for the [python] AppEngine application that creates several tasks and adds them to a custom task queue. dev_appserver.py seems to ignore the speed / scheduling options that I specify in queue.yaml and immediately does all the tasks. This is a problem [at least for dev / testing purposes], since my tasks call a throttled url; the immediate execution of all tasks violates the throttling restrictions and returns me a bunch of errors.
Does anyone know if task scheduling if dev_appserver.py is disabled? I can not find anything that suggests this in the AppEngine docs. Can anyone suggest a workaround?
Thank.
source
share