From a9fea3a418921f1b1f797fb72f67c301084eb4d2 Mon Sep 17 00:00:00 2001 From: creations Date: Tue, 10 Jun 2025 16:35:26 -0400 Subject: [PATCH] fix lint --- src/routes/health.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/health.ts b/src/routes/health.ts index 49d8ef8..19e36cc 100644 --- a/src/routes/health.ts +++ b/src/routes/health.ts @@ -13,7 +13,7 @@ async function checkRedisHealth(): Promise { try { await redis.exists("__health_check__"); return "healthy"; - } catch (error) { + } catch { return "unhealthy"; } }