promote(api): dev → uat — /api/readyz auth bypass fix + /health/ready revert (GRO-2687) #239

Merged
Flea Flicker merged 6 commits from dev into uat 2026-08-09 10:26:49 +00:00
Showing only changes of commit 7dfa1ad830 - Show all commits
+1 -1
View File
@@ -23,7 +23,7 @@ if (process.env.AUTH_DISABLED === "true") {
}
export const authMiddleware: MiddlewareHandler = async (c, next) => {
if (c.req.path.startsWith("/api/auth/") || c.req.path === "/api/health") {
if (c.req.path.startsWith("/api/auth/") || c.req.path === "/api/health" || c.req.path === "/api/readyz") {
await next();
return;
}