在包含gae-python 1.8.9的gcloud SDK(0.9.15)的最新版本中,我无法再将queue.yaml推送到GAE。执行:
appcfg.py update app.yaml mqtt.yaml queue.yaml device.yaml
我收到以下错误:
Usage: appcfg.py [options] update <directory> | [file, ...]
appcfg.py: error: Error parsing ./queue.yaml: Unexpected attribute 'queue' for object of type AppInfoExternal.
in "./queue.yaml", line 2, column 1.
queue.yaml的内容:
queue:
- name: mqtt
rate: 10/s
- name: device
rate: 10/s
不确定发生了什么变化。这是在gae-python 1.8.6中工作的。
答案 0 :(得分:3)
您正在尝试将任务队列配置推送为模块。如果您只想更新队列配置,请运行appcfg.py update_queues .