From 17c7e4ed19db6ce11530c00cfd0226217a6439f5 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Thu, 22 Jan 2026 08:32:42 -0800 Subject: [PATCH] Added health checks --- fly.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/fly.toml b/fly.toml index 0480a33..4d96844 100644 --- a/fly.toml +++ b/fly.toml @@ -12,5 +12,12 @@ primary_region = "sjc" auto_stop_machines = true min_machines_running = 0 max_machines_running = 1 - concurrency = { soft_limit = 1, hard_limit = 2 } + concurrency = { soft_limit = 1, hard_limit = 1 } grace_period = "30s" + +[[http_service.checks]] + grace_period = "10s" + interval = "15s" + method = "GET" + path = "/health" + timeout = "2s"