You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ... from index.ts
exports.auth = require("./authFunctions");
// ... from authFunctons.ts
exports.isAdmin = functions.https.onCall((_, context) => {...}
In firebase CLI
+ functions[auth-isAdmin]: http function initialized (http://localhost:5001/letsplaydotdev/us-central1/auth.isAdmin).
Going to http://localhost:5001/letsplaydotdev/us-central1/auth.isAdmin hangs and never responds. Going to http://localhost:5001/letsplaydotdev/us-central1/auth-isAdmin does establish connection.
[REQUIRED] Steps to reproduce
Create function group and export it in index.ts. Start up emulator using firebase emulators:start. The initialized URL outputted hangs.
[REQUIRED] Expected behavior
The firebase function's outputted URL does not hang.