无法找到retry_parameters

时间:2016-11-16 11:23:06

标签: google-app-engine cron

我们正在使用谷歌应用程序enigne(使用版本1.9.18,而构建和部署应用程序,语言是Java)

我们在cron.yaml中使用cron重试参数,如下所示

retry_parameters:
    min_backoff_seconds: 2.5
    max_backoff_seconds: 5
    max_doublings: 5

在部署时,我们遇到了异常

unable to find retry_parameters on com.google.apphosting.utils.config.CronXml$Entity

为什么我们得到此异常,我们是否需要更新我们的应用引擎版本?

1 个答案:

答案 0 :(得分:0)

retry_parameters不是全球性的设定;它分别与每个cron作业有关。这是语法:

cron:
- description: "retry demo"
  url: /retry
  schedule: every 10 mins
  retry_parameters:
    min_backoff_seconds: 2.5
    max_doublings: 5