Nabeel Parkar
Nabeel Parkar
Hello @masanori-iwata. Is the issue that functions in another file don't get the region settings applied?
I cannot reproduce this issue, unfortunately. Here's what I tried: ```ts // src/index.ts import { setGlobalOptions } from "firebase-functions/v2/options"; import * as admin from "firebase-admin"; import { onRequest } from...
@OutdatedGuy thanks for this input! I can reproduce it with a JS project. I'm guessing in TS, all files are bundled into a single file by `tsc` which is why...
@OskarGroth, it shouldn't be an issue as long as the options are the same (which is why I recommended having a global function called). But yes, I agree this is...
I would think that vite wouldn't mess with the ordering of the code. Can you give an example 2 files I can pop into a new generated TS project to...
@GerroDen Could you check which region your database is from the [Google Cloud Console](https://console.cloud.google.com)
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...
Hello @tgucio. Thank you for filing this issue. Looks like a valid feature request
Hey @jdziek. Could you provide a code sample and logs in text so that I can investigate this further?
This error appears due to a hard coded default value for event listeners. See https://stackoverflow.com/questions/9768444/possible-eventemitter-memory-leak-detected for more details. This value can be increased but it's not recommended. Just to confirm,...