将queue.yaml推送到App Engine时出错

时间:2014-01-17 17:25:30

标签: python google-app-engine yaml

在包含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中工作的。

1 个答案:

答案 0 :(得分:3)

您正在尝试将任务队列配置推送为模块。如果您只想更新队列配置,请运行appcfg.py update_queues .