使用新的GAE 分拆健康检查,我的所有GAE请求现在都返回502错误。即使在从我的应用程序中删除了拆分健康检查并重新部署之后,我仍然只得到了502的。
采取的步骤,停止健康检查:
gcloud beta app update --split-health-checksv168.0.0
错误信息:
<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>502 Server Error</title>
</head>
<body text=#000000 bgcolor=#ffffff>
<h1>Error: Server Error</h1>
<h2>The server encountered a temporary error and could not complete your request.<p>Please try again in 30 seconds.</h2>
<h2></h2>
</body></html>发布于 2017-08-28 16:11:04
禁用拆分健康检查的正确方法是使用无文档的--no-split-health-checks标志,如下所示:
gcloud beta app update --no-split-health-checks然后重新部署你的应用程序。
https://stackoverflow.com/questions/45923231
复制相似问题