diff --git a/functions/src/bin/daemon.ts b/functions/src/bin/daemon.ts index fad031d..b96e737 100644 --- a/functions/src/bin/daemon.ts +++ b/functions/src/bin/daemon.ts @@ -16,4 +16,6 @@ process.on('SIGINT', () => { .catch(err => console.warn(`Error while finishing the schedules - ${err}`)); }); -exports.updater = functions.https.onRequest((req, resp) => resp.sendStatus(200)); +exports.updater = functions.https.onRequest(async (req, resp) => { + resp.sendStatus(200); +});