Should HTTPS functions return asynchronous promises like realtime functions have to? We haven\'t been returning in HTTPS functions (just using res.status.send etc), and it l
This works now in the latest Firebase:
exports.asyncFunction = functions.https.onRequest(async (request, response) => { const result = await someAsyncFunction(); response.send(result); });