无法在 Firebase 云中部署新功能或删除现有功能[重复]

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

我使用 Node js&NPM 部署了一个基本功能,

我部署了以下功能 Here is the sample of My code。 现在我尝试通过两种方式删除它

1)firebase cli 删除命令。

2)通过 Fire Base 控制台手动删除它,但一旦我们刷新控制台,它就会再次重新部署。

我需要在使用时删除现有功能并部署新功能 firebase

functions:delete myFunction
以下错误消息打印在我的控制台中。

Failed to initialize region (action ID: 1c8a635338f38ddd): Cloud 
   storage operation for gcf-sources-226869492485-us-central1 failed as 
   the billing account is not available
   Functions deploy had errors with the following functions:
   profileOnCreate(us-central1)
   i  functions: cleaning up build files...
   !  functions: Unhandled error cleaning up build images. This could 
   result in a small monthly bill if not corrected. You can attempt to 
   delete these images by redeploying or you can delete them manually 
   at https://console.cloud.google.com/artifacts/docker/stract- 
   testing/us-central1/gcf-artifacts
  1. 即使我尝试使用 Firebase 控制台手动删除它,它也会被删除一会儿,刷新屏幕后,相同的已删除功能将使用最新时间戳再次部署。
firebase google-cloud-platform google-cloud-functions firebase-tools
1个回答
0
投票

这里发布了您的问题的答案https://stackoverflow.com/a/68612073/4977439

Cloud Functions 使用另一个名为 Cloud Build 的产品来构建实际部署的服务器映像。这些图像存储在云存储中,并且该存储费用将计入您的帐户。

但这可能只是一个错误,您可以随时直接联系 Firebase 支持

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