Toni Alatalo
Toni Alatalo
FYI, I made an experimental hack to allow concurrent execution of multiple asynchronous functions, triggered by firebase function callbacks, so that they keep running and finish after the callback has...
FYI, as a workaround, I finally ended up using a vanilla Run instance, with a python ASGI server, to handle Tasks triggered by firebase functions. So for the long-running task...
are you using the latest release? https://github.com/firebase/firebase-functions-python/pull/149
> From examining the firebase-functions-python code and commits, it doesn't seem fixed but maybe I'm missing something. Is your understanding that the issue is also fixed for pubsub functions? I...
I was googling for info about making multi entity queries to comet sth. Would be handy to get for example a certain attribute, or a set of attributes, for a...
Yep my tests do a lot of such refreshing too, so +1 for the need from here. No idea about the best design but maybe it's just such a reload...
Any new thoughts here? I'm also considering Firedantic for our project, where have until now (just a few weeks) written a self baked simple db util for using pydantic for...
> I'd guess it's always possible to just use the firebase python sdk client etc. directly, Just to answer my own question: yes, it seems trivial to fall back using...
> Without this, cloud functions that share a trigger invariably enter a race condition. What do you actually mean with this BTW? I guess two functions that get triggered by...
> Say you have cloud functions handling people submitting a form to add you to a newsletter list. Right-o, thanks for the rautalanka. I think we currently avoid this by...