I have created a new task queue and defined it in queue.yaml
I am not sure how to start adding tasks to this queue?
with the default queue it is simple taskqueue.add(...)
how do we do it for a custom queue?
I have created a new task queue and defined it in queue.yaml
I am not sure how to start adding tasks to this queue?
with the default queue it is simple taskqueue.add(...)
how do we do it for a custom queue?
You may specify which queue to add a task to by passing a queue_name
parameter (documentation). queue_name
defaults to "default". Example:
taskqueue.Task(url='...', params={...}).add(queue_name='my_custom_queue')