Skip to content

Commit 1127fcf

Browse files
fix: pretty print health check
1 parent d484fb0 commit 1127fcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def stream_page():
4242

4343
@app.get("/health")
4444
def health():
45-
return json.dumps({"health": "ok"})
45+
return json.dumps({"health": "ok"}, indent=4, sort_keys=True)
4646

4747

4848
def init_routes():

0 commit comments

Comments
 (0)