fixed __heartbeat__ route
This commit is contained in:
parent
b6849661a6
commit
0a31e2d521
|
@ -69,7 +69,7 @@ module.exports = function(app) {
|
||||||
res.sendStatus(200);
|
res.sendStatus(200);
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('__heartbeat__', async (req, res) => {
|
app.get('/__heartbeat__', async (req, res) => {
|
||||||
try {
|
try {
|
||||||
await storage.ping();
|
await storage.ping();
|
||||||
res.sendStatus(200);
|
res.sendStatus(200);
|
||||||
|
|
Loading…
Reference in New Issue