为什么推送队列被禁用
Why the push queue is disabled
我在我的模块中定义了一个自定义队列来驱动备份作业
- name: backup
rate: 1/h
max_concurrent_requests: 1
target: ah-builtin-python-bundle
但出于某种原因,GAE 已禁用队列
工具提示中的红色感叹号是这样的:
The queue has been disabled, and removed from queue.xml/queue.yaml
到目前为止,这是我从控制台获得的唯一信息。
我的队列定义有什么问题?
费率单位h
无效。应该是 1/s
而不是
我在我的模块中定义了一个自定义队列来驱动备份作业
- name: backup
rate: 1/h
max_concurrent_requests: 1
target: ah-builtin-python-bundle
但出于某种原因,GAE 已禁用队列
工具提示中的红色感叹号是这样的:
The queue has been disabled, and removed from queue.xml/queue.yaml
到目前为止,这是我从控制台获得的唯一信息。
我的队列定义有什么问题?
费率单位h
无效。应该是 1/s
而不是