I've got two Google Cloud functions with the same name but in two different regions.
How do I specify which function should be called (as there are two of them with the same name)?
My firebase.json file:
{
"hosting": {
"public": "public",
"rewrites": [
{
"source": "/test",
"function": "paaspiutil"
}
]
}
}