I’m trying to add a task to non-default queue “slowQueue” using:
taskqueue.Queue('slowQueue').add(url='/worker/slow', params={'name': name})
I receive the error “TypeError: add() got an unexpected keyword argument ‘url'”
How do you add a task to a non-default queue in google app engine?
You suppose to add task(s) when calling Queue.add()