fix lint
All checks were successful
Code quality checks / biome (push) Successful in 9s

This commit is contained in:
creations 2025-06-10 16:35:26 -04:00
parent 86be889ede
commit a9fea3a418
Signed by: creations
GPG key ID: 8F553AA4320FC711

View file

@ -13,7 +13,7 @@ async function checkRedisHealth(): Promise<string> {
try { try {
await redis.exists("__health_check__"); await redis.exists("__health_check__");
return "healthy"; return "healthy";
} catch (error) { } catch {
return "unhealthy"; return "unhealthy";
} }
} }