fix(api): disable healthcheck
This commit is contained in:
@@ -21,6 +21,11 @@ export async function healthcheck(
|
|||||||
request: FastifyRequest,
|
request: FastifyRequest,
|
||||||
reply: FastifyReply,
|
reply: FastifyReply,
|
||||||
) {
|
) {
|
||||||
|
if (process.env.DISABLE_HEALTHCHECK) {
|
||||||
|
return reply.status(200).send({
|
||||||
|
ok: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
const redisRes = await withTimings(getRedisCache().ping());
|
const redisRes = await withTimings(getRedisCache().ping());
|
||||||
const dbRes = await withTimings(db.project.findFirst());
|
const dbRes = await withTimings(db.project.findFirst());
|
||||||
const queueRes = await withTimings(eventsQueue.getCompleted());
|
const queueRes = await withTimings(eventsQueue.getCompleted());
|
||||||
|
|||||||
Reference in New Issue
Block a user