gpt4 book ai didi

Azure 502 Web 服务器在充当网关时收到无效响应

转载 作者:行者123 更新时间:2023-12-03 03:15:27 27 4
gpt4 key购买 nike

我的页面上开始出现随机 502 错误。这是否与 Azure 或我的网站相关?自周四以来我没有做任何更改,所以我对我的代码有点怀疑。

502 - Web server received an invalid response while acting as a gateway or proxy server. 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.

我正在检查日志,但它只显示发生在哪个 url,并且发生在主根页面上。

最佳答案

就我而言,发生这种情况是因为代码中存在无限循环,该循环仅在生产中触发,但不在我的本地计算机上触发。修复无限循环显然修复了 502。;-)

更新:无限循环的元示例 (C#)。

public IList<Model> PropertyOne
{
get
{
return !_productionOnlyCondition ? _models.ToList() : PropertyTwo;
}
}

public IList<Model> PropertyTwo
{
get
{
return PropertyOne.Where(model => model.Condition).ToList();
}
}

关于Azure 502 Web 服务器在充当网关时收到无效响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27917696/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com