From 4a7244c2b09ecde10356a5a9a9b48305170f6866 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 3 May 2026 13:33:20 +0200 Subject: [PATCH] fix: use string not pathPrefix for /healthz route (IHP v1.5 API) --- Web/Routes.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/Routes.hs b/Web/Routes.hs index 294e6aa..f406bb6 100644 --- a/Web/Routes.hs +++ b/Web/Routes.hs @@ -6,7 +6,7 @@ import Web.Types instance CanRoute HealthController where parseRoute' = do - pathPrefix "/healthz" + _ <- string "/healthz" endOfInput pure HealthAction