Ast*_*boy 5 azure azure-functions
当我在主插槽上运行HTTP触发功能应用程序时,我收到以下错误消息:
Status: 502 Bad Gateway
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>502 - Web server received an invalid response while acting as a gateway or proxy server.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;}
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;}
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;}
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
<div class="content-container"><fieldset>
<h2>502 - Web server received an invalid response while acting as a gateway or proxy server.</h2>
<h3>There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream content server, it received an invalid response from the content server.</h3>
</fieldset></div>
</div>
</body>
</html>Run Code Online (Sandbox Code Playgroud)
但是当我尝试使用相同的代码创建一个新的插槽和功能应用程序时,它可以正常工作而不会出现上述错误.好像我们的主插槽配置存在问题,但我找不到任何资源指向我.
还有其他人遇到过这个问题吗?你怎么修好它的?
我在不同情况下多次看到 502 错误。
大多数时候这是我的编程错误/配置问题。
不过今天花了很多时间才发现这个问题,所以分享到这里。
问题#1
s3 = new AWS.S3();
AWS.config.loadFromPath(dirName1 + '\\aws-config.json');
s3.listObjectsV2(..);
Run Code Online (Sandbox Code Playgroud)
在这里,虽然错误出现在第 1 行,但问题发生在第 3 行
解决方案是:
AWS.config.loadFromPath(dirName1 + '\\aws-config.json');
s3 = new AWS.S3();
s3.listObjectsV2(..);
Run Code Online (Sandbox Code Playgroud)
也就是说,加载 aws 配置后,我们需要创建 s3 新实例变量。
问题 #2
如此处所示,/sf/answers/2746831321/是将文件写入无法访问的目录,虽然您可以写入 D:\local\Temp,但我们无法写入其他目录(例如当前目录)或 D:\
不幸的是,在上面的示例以及我的其他实例中,Azure 函数在 Azure 函数控制台中没有任何登录,因此需要进行大量调试。
| 归档时间: |
|
| 查看次数: |
3153 次 |
| 最近记录: |