79195538

Date: 2024-11-16 16:17:16
Score: 0.5
Natty:
Report link

If you are logged in using gcloud, there a way you can individually update your functions to avoid the runtime error:

gcloud functions deploy api \
--runtime=nodejs18 \
--trigger-http \
--region=us-central1 \
--project=`YOUR_PROJ_ID`

I normally run firebase deploy --only functions:api --project YOUR_PROJ_ID

to deploy my api function, but I got hit with the same error. Even changing firebase tools versions did not work. Hope this helps!

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): Hope this helps
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rene Ortega