我刚刚在 GAE 上实现了模块,并试图从某个模块运行 Cron 作业。我的 app.yaml 在顶部有以下值:
application: myapp
module: default
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
#all handlers
我尝试激活的模块的reporting.yaml 具有以下设置:
application: myapp
module: reporting
version: 1
instance_class: B4
runtime: python27
api_version: 1
threadsafe: true
handlers:
#same handlers as app.yaml
最后我的 cron.yaml 看起来如下:
cron:
- description: update reports
url: /update
schedule: every day 12:00
target: reporting
我需要该模块,因为该作业需要比普通实例提供的更多内存。然而,出于某种原因,当我查看我的应用程序的日志时,它会继续在默认模块上执行 cron 作业。为什么它不接受目标参数?