Merge pull request #116 from relud/patch-1

add /__lbheartbeat__ endpoint
This commit is contained in:
Danny Coates 2017-06-22 13:22:41 -07:00 committed by GitHub
commit 31f9537bc8

View File

@ -146,6 +146,10 @@ app.post('/upload/:id', (req, res, next) => {
});
});
app.get('/__lbheartbeat__', (req, res) => {
res.sendStatus(200);
});
app.listen(conf.listen_port, () => {
log.info('startServer:', `Portal app listening on port ${conf.listen_port}!`);
});