Skip to content

Commit

Permalink
Updated Firebase Functions version
Browse files Browse the repository at this point in the history
  • Loading branch information
Javinator9889 committed Jun 28, 2020
1 parent 0bf38d5 commit 3665d13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion functions/src/bin/daemon.ts
Expand Up @@ -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);
});

0 comments on commit 3665d13

Please sign in to comment.