为什么我在 app.yaml 中包含 app_engine_apis 后仍然收到警告?

Why am I still getting a warning after including app_engine_apis in app.yaml?

我刚刚使用 gcloud app deploy 在 Google App Engine 上部署了一个应用程序,我收到如下警告:

WARNING: There is a dependency on App Engine APIs, but they are not enabled in your app.yaml. Set the app_engine_apis property.

所以我所做的是将 app_engine_apis: true 包含在 app.yaml 中,保存它,然后再次进行 gcloud app deploy。但是我仍然收到相同的警告。我错过了什么?

我通过 运行 修复了警告:

google beta app deploy

而不是

google app deploy

我从 this document 那里得到了修复。我认为这是必要的,因为在回答这个问题时 python2 app_engine_apis 到 python3 的迁移尚未完成。