From 46fe5ee6b596ddc4a5581253dd6aa4c5473da374 Mon Sep 17 00:00:00 2001 From: Stuart Douglas Date: Wed, 11 Sep 2024 14:07:23 +1000 Subject: [PATCH] fix: remove health check --- 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), ) }