fixed __heartbeat__ route

This commit is contained in:
Danny Coates 2017-08-25 10:03:49 -07:00
parent b6849661a6
commit 0a31e2d521
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ module.exports = function(app) {
res.sendStatus(200);
});
app.get('__heartbeat__', async (req, res) => {
app.get('/__heartbeat__', async (req, res) => {
try {
await storage.ping();
res.sendStatus(200);