0

I could know whether a queue_name is available or not in queue.yaml from UnknownQueueError when passed unknown queue_name.

from google.appengine.api import taskqueue
taskqueue.add(url="/mytask", queue_name="foo", method="GET")

However, I prefer to know it without exception handling. Are there any API?

hiroshi
  • 6,871
  • 3
  • 46
  • 59
  • At the moment you could duplicate the app.yaml (use a symlink) and then you can read/parse it for the queue definitions. – Tim Hoffman Jul 05 '13 at 08:17

1 Answers1

1

There is not currently an API. You can vote for the issue https://code.google.com/p/googleappengine/issues/detail?id=8405

Eric Willigers
  • 1,710
  • 14
  • 9