From 731de61c95a6eaf1a8160a8e4c95bc47714d5c9f Mon Sep 17 00:00:00 2001 From: Ian Kerins Date: Sun, 14 Jan 2024 17:21:50 -0500 Subject: [PATCH] Handle sudden breakage in fly config schema https://github.com/superfly/flyctl/pull/3174 --- demo/fly.zoekt.toml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/demo/fly.zoekt.toml b/demo/fly.zoekt.toml index 8625fdd..1bfc4e9 100644 --- a/demo/fly.zoekt.toml +++ b/demo/fly.zoekt.toml @@ -9,19 +9,10 @@ primary_region = "ewr" [experimental] auto_rollback = true -[[services]] - http_checks = [] - internal_port = 8080 - processes = ["app"] - protocol = "tcp" - script_checks = [] - [services.concurrency] - hard_limit = 25 - soft_limit = 20 - type = "connections" - - [[services.tcp_checks]] +[checks] + [checks.tcp_check] + type = "tcp" + port = 8080 grace_period = "1s" interval = "15s" - restart_limit = 0 timeout = "2s"