google 函数经常给出,Firebase 函数上的 502 错误:config:get 吗?

问题描述 投票:0回答:1

运行 firebase 命令

firebase functions:config:get
返回错误
Error: Unable to parse JSON: SyntaxError: Unexpected token '<'
,昨天工作正常,但今天却不行了。

当我使用

--debug
运行它时,我可以看到整个调用跟踪,并且 google API 似乎返回“502”

[2024-06-19T09:09:54.234Z] <<< [apiv2][status] GET https://runtimeconfig.googleapis.com/v1beta1/projects/*********/configs 502

如果您将该配置 URL 粘贴到浏览器中,也会发生同样的情况,您会看到“可爱”的错误页面,而不是预期的 JSON 配置。

编辑:

这种情况在午餐时间就消失了,无需我进行任何更改,这种情况在 Google 计算/Firebase 功能中经常发生吗?到目前为止,我主要只使用 auth 和 firestore,有点担心这可能有点不稳定

502 image from google

firebase google-cloud-functions firebase-tools http-status-code-502
1个回答
0
投票

过去两周在执行 firebase 部署时具有相同的功能——仅功能

如果出现“错误:Cloud Runtime Config 当前遇到问题,这导致您的函数无法部署。请等待几分钟,然后再次尝试部署您的函数。 如果您想继续部署项目的其余部分,请运行

firebase deploy --except functions
。”,并且 --debug 对于 https://runtimeconfig.googleapis.com configs

显示 502

不知从何而来,几个小时后消失

希望这个问题能够得到解决

© www.soinside.com 2019 - 2024. All rights reserved.