GAE 部署将不再有效
GAE deploy won't work anymore
所以我在使用 GAE 时遇到了麻烦。我开始尝试删除每个实例 运行、版本、存储桶等,认为它会重置部署状态。
现在我有一个损坏的项目(永久 503)和模糊的消息:
Caught non-retryable exception while listing gs://staging.<app-name>.appspot.com/:
BucketNotFoundException: 404 gs://staging.<app-name>.appspot.com bucket does not exist.
CommandException: Caught non-retryable exception - aborting rsync
2015-11-05 22:11:13,305 DEBUG root (gcloud.preview.app.deploy) Could not synchronize files. The gsutil command exited with status [1].
当我尝试在 'Storage' 中创建所述存储桶时,我有一个 "Backend Error"。
我有哪些选择?完全删除 GCloud 项目并重新开始?
这是当前SDK中的一个bug。这里有一个问题:https://code.google.com/p/google-cloud-sdk/issues/detail?id=321
当前的解决方法是:
Turning off the appengine api seems to fix the problem:
gcloud config set app/use_appengine_api false
所以我在使用 GAE 时遇到了麻烦。我开始尝试删除每个实例 运行、版本、存储桶等,认为它会重置部署状态。
现在我有一个损坏的项目(永久 503)和模糊的消息:
Caught non-retryable exception while listing gs://staging.<app-name>.appspot.com/:
BucketNotFoundException: 404 gs://staging.<app-name>.appspot.com bucket does not exist.
CommandException: Caught non-retryable exception - aborting rsync
2015-11-05 22:11:13,305 DEBUG root (gcloud.preview.app.deploy) Could not synchronize files. The gsutil command exited with status [1].
当我尝试在 'Storage' 中创建所述存储桶时,我有一个 "Backend Error"。
我有哪些选择?完全删除 GCloud 项目并重新开始?
这是当前SDK中的一个bug。这里有一个问题:https://code.google.com/p/google-cloud-sdk/issues/detail?id=321
当前的解决方法是:
Turning off the appengine api seems to fix the problem:
gcloud config set app/use_appengine_api false