We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After rollout of new version of firebase-functions (0.3.0) my python cloud functions 2nd gen started crashing.
Logs form GCP console:
It looks like problem is in firestore_fn.py line 137 and 138:
event_auth_type = event_attributes["authtype"] event_auth_id = event_attributes["authid"]
changing authtype->type and authid->id solves the problem locally (emulators).
For deploys to work I had to change firebase-functions to version 0.2.0
The text was updated successfully, but these errors were encountered:
I'm also seeing this behavior, exact same error message and stack trace, deploying to 2nd gen functions.
Sorry, something went wrong.
authtype
0.4.1 is released and should fix this
Successfully merging a pull request may close this issue.
After rollout of new version of firebase-functions (0.3.0) my python cloud functions 2nd gen started crashing.
Logs form GCP console:

It looks like problem is in firestore_fn.py line 137 and 138:
changing authtype->type and authid->id solves the problem locally (emulators).
For deploys to work I had to change firebase-functions to version 0.2.0
The text was updated successfully, but these errors were encountered: