From 6cb245a8d079fc7bbb68b2638e6869d32278bae1 Mon Sep 17 00:00:00 2001 From: Stuart Douglas Date: Wed, 11 Sep 2024 14:12:24 +1000 Subject: [PATCH] fix: remove health check (#2645) --- backend/runner/runner.go | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/runner/runner.go b/backend/runner/runner.go index c3ca8704b6..3835a8b453 100644 --- a/backend/runner/runner.go +++ b/backend/runner/runner.go @@ -126,7 +126,6 @@ func Start(ctx context.Context, config Config) error { return rpc.Serve(ctx, config.Bind, rpc.GRPC(ftlv1connect.NewVerbServiceHandler, svc), rpc.HTTP("/", svc), - rpc.HealthCheck(svc.healthCheck), ) }