From 99f6da9762b4af37bf2aec290aae653e42857953 Mon Sep 17 00:00:00 2001 From: developomp Date: Wed, 20 Oct 2021 09:13:22 +0900 Subject: prettier formatted /api --- api/src/routes/-/healthz.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api/src/routes/-/healthz.ts') diff --git a/api/src/routes/-/healthz.ts b/api/src/routes/-/healthz.ts index a42575f8..f7bcfebf 100644 --- a/api/src/routes/-/healthz.ts +++ b/api/src/routes/-/healthz.ts @@ -9,7 +9,7 @@ router.get("/", route({}), (req: Request, res: Response) => { // test that the database is alive & responding getConnection(); return res.sendStatus(200); - } catch(e) { + } catch (e) { res.sendStatus(503); } }); -- cgit 1.5.1