You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EDIT
Turns out I was stuck on an old version of firebase-tools, due to having multiple Node installations (NVM).
After fixing the problem, my error went away.
ORIGINAL POST
Getting a probably related error:
Error: Failed to parse build specification:
- FirebaseError Expected endpoints[createNewBillingMonth].minInstances to be a number; was object
This happens when deploying using firebase deploy --only functions.
This is in a function that has a runWith that looks like this:
Picking up this for investigation, the endpoint that generates the YAML contract that configures the function on GCP/Firebase sets the maxInstaces to null. According to the contract as far as I know, the default maxInstances is supposed to be 1000
Deployed the v1 event-driven cloud function with the following configuration:
The function is without
runWith
configuration.After deploying, the firebase console automatically shows the max instance limit of 3000.
Is 3000, the default max limit?
The text was updated successfully, but these errors were encountered: