After using firebase deploy --only functions
, an error appeared in my React code and I had to use control-C to stop the deployment on my Mac. Now, when attempting to redeploy to Google servers, the following error is encountered:
firebase.js -> build/firebase.js
index.js -> build/index.js
✔ functions: Finished running predeploy script.
i functions: ensuring necessary APIs are enabled...
✔ functions: all necessary APIs are enabled
i functions: preparing server-functions/build directory for uploading...
Error: Maximum call stack size exceeded
How can I reset the Firebase server in order to successfully deploy the functions again? Even a full deploy did not resolve the issue, as the same error persisted during the functions phase. Rolling back the deploy or deleting all functions on the server also did not work.
Is there a proper way to terminate a deploy?
Another user managed to deploy successfully, but now a different error occurs:
firebase.js -> build/firebase.js
index.js -> build/index.js
✔ functions: Finished running predeploy script.
i functions: ensuring necessary APIs are enabled...
✔ functions: all necessary APIs are enabled
Error: Server Error. getaddrinfo ENOTFOUND mobilesdk-pa.googleapis.com mobilesdk-pa.googleapis.com:443
Subsequent retries led back to the original call stack overflow error.
Is there a method to access the call stack trace when the
Maximum call stack sized exceeded
error occurs?