【发布时间】:2019-02-27 02:05:49
【问题描述】:
我正在尝试部署一个 Node.js 应用,仅在 app.yaml 文件中指定绝对最小值:
runtime: nodejs8
gcloud 给了我这个:
MaxRetrialsException: last_result=(None, (<type 'exceptions.AttributeError'>, AttributeError("'_Sections' object has no attribute 'storage'",), <traceback object at 0x106eca488>)), last_retrial=3, time_passed_ms=67,time_to_wait=0
我发现没有相关参考提到storage 属性,MaxRetrials 听起来像是网络问题,所以不知道从哪里开始。
gcloud 版本(未安装其他组件):
Google Cloud SDK 217.0.0
bq 2.0.34
core 2018.09.17
gsutil 4.34
这是我的package.json:
{
"name": "parrot-skill",
"description": "Parrot skill",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Pirim",
"engines": {
"node": ">=6.9.1"
},
"scripts": {
"start": "node app.js"
},
"dependencies": {
"express": "^4.16.3"
}
}
【问题讨论】:
标签: node.js google-cloud-platform gcloud