Closed
Description
I have 2 function registered as so:
func init() {
functions.HTTP("TestTelemetry", testTelemetry)
functions.HTTP("Log", log)
}
I've deployed a single function to CloudRun. No matter if I call https://my-cloud-run/Log
or https://my-cloud-run/TestTelemetry
only the testTelemetry
function is ever invoked. In CloudRun, TestTelemetry is set as the Executed Function (CR 2nd Generation).
The framework seems to let me register multiple names/functions, but does it support calling different paths/functions? Or do I have to deploy a separate Cloud Run function for every path?