質問

The Google App Engine documentation says:

The App Engine Cron Service allows you to configure regularly scheduled tasks...

But what task queue do cron scheduled tasks run on? How can I change the task queue for a cron job? My motivation for this question is that I'd like to control the retry-parameters of cron scheduled tasks.

Thanks

役に立ちましたか?

解決

It doesn't use a task queue, and the retry options for cron 'tasks' aren't configurable. The closest you can get is to do nothing in your cron 'task' except enqueue another task, which can be configured via a queue.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top