firebase-functions-python icon indicating copy to clipboard operation
firebase-functions-python copied to clipboard

Results 25 firebase-functions-python issues
Sort by recently updated
recently updated
newest added

The following error occurred once on my pubsub function. It's otherwise run fine hundreds of times without any issue. ```python Traceback (most recent call last): File "/layers/google.python.pip/pip/lib/python3.11/site-packages/flask/app.py", line 2190, in...

waiting for customer response

I am creating a Google Cloud Function using a Python script, in order to handle the creation of a new document in my Firestore database. When the data of the...

bug
waiting for customer response

# Description I deployed a Firebase Cloud Function which should not have been throwing a CORS error, since all my other cloud functions are called using the exact same code/headers/tokens...

waiting for customer response

I am currently testing the 2nd gen on-write Firestore cloud triggers. For some reason, the trigger freezes and stops executing after a few hours from deployment. It appears that updating...

bug

## Context We've noticed this issue on our production and dev environments in Firebase, and launched an investigation together with GCP support (Support Case 49715474). GCP acknowledged the strange behaviour,...

bug
blocked:gcp

According to the typing of `HttpsOptions` class, I should be able to set `invoker` to `public` or `private`. But when I tried to deploy a `https_fn.on_request` function with `invoker=True`, an...

waiting for customer response

After updating firebase-tools, using the functions emulator, any time an `@firestore_fn`-decorated function is executed, I get this error: ``` ... > File "/.../venv/lib/python3.11/site-packages/firebase_functions/firestore_fn.py", line 115, in _firestore_endpoint_handler > is_nanoseconds =...

bug
waiting for customer response

I created a task queue function and configured the try config using the decorator: ``` @tasks_fn.on_task_dispatched( secrets=["SOME_SECRET"], retry_config=RetryConfig(max_attempts=5, min_backoff_seconds=60), rate_limits=RateLimits(max_concurrent_dispatches=1), ) ``` But when the body of the function throws...

waiting for customer response