fixed __heartbeat__ route
This commit is contained in:
parent
b6849661a6
commit
0a31e2d521
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue