Php Cron.yaml不创建重复出现的任务

Php Cron.yaml不创建重复出现的任务,php,google-app-engine,ubuntu,cron,yaml,Php,Google App Engine,Ubuntu,Cron,Yaml,我正试图通过使用Cron.yaml过程每1分钟运行一次,在我的google应用程序引擎中运行一个php脚本 我的cron.yaml文件如下所示 cron: - description: "ping apple apns service" url: /folder/ios_push_notification schedule: every 1 minutes 我的app.yaml文件如下: runtime: php55 api_version: 1 handlers: - url:

我正试图通过使用
Cron.yaml
过程每1分钟运行一次,在我的google应用程序引擎中运行一个php脚本

我的cron.yaml文件如下所示

cron:
 - description: "ping apple apns service"
  url: /folder/ios_push_notification
  schedule: every 1 minutes
我的
app.yaml
文件如下:

runtime: php55
api_version: 1

handlers:

- url: /(.+\.php)$
  script: \1

- url: /folder/ios_push_notification
  script: ios_push_notification.php
我使用
gcloud app deploy
命令,使用下载到我计算机上的google cloud shell上传我的所有文件

澄清一下,我所有的文件都有效。我可以通过浏览器上的url转到脚本。唯一不起作用的部分是脚本没有每15秒运行一次。

来自文档:

“您可以使用
gcloud app deploy cron.yaml
上传cron作业。”

来自文档:


“您可以使用
gcloud app deploy cron.yaml
上传cron作业。”

您的第一个示例是无效的yaml,请尝试使用一些在线解析器。是的
cron.yaml
据我所知不支持秒,必须更改为分钟您的第一个示例是无效的yaml,例如,用一些在线解析器试试。是的
cron.yaml
据我所知不支持秒,必须改为分钟