fixed __heartbeat__ route

This commit is contained in:
Danny Coates
2017-08-25 10:03:49 -07:00
parent b6849661a6
commit 0a31e2d521

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);