From be8d572eb2aff5bb89649f50ade865ad78152c5d Mon Sep 17 00:00:00 2001 From: sarahalsmiller <100602640+sarahalsmiller@users.noreply.github.com> Date: Wed, 3 Apr 2024 14:13:57 -0500 Subject: [PATCH] NET-8524 Remove registation of api gateway controller (#20950) remove registation of api gateway controller --- internal/mesh/internal/controllers/register.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/mesh/internal/controllers/register.go b/internal/mesh/internal/controllers/register.go index 084d779bee..d5325b02bb 100644 --- a/internal/mesh/internal/controllers/register.go +++ b/internal/mesh/internal/controllers/register.go @@ -8,7 +8,6 @@ import ( "github.com/hashicorp/consul/agent/leafcert" "github.com/hashicorp/consul/internal/controller" - "github.com/hashicorp/consul/internal/mesh/internal/controllers/apigateways" "github.com/hashicorp/consul/internal/mesh/internal/controllers/explicitdestinations" "github.com/hashicorp/consul/internal/mesh/internal/controllers/explicitdestinations/mapper" "github.com/hashicorp/consul/internal/mesh/internal/controllers/gatewayproxy" @@ -58,6 +57,4 @@ func Register(mgr *controller.Manager, deps Dependencies) { mgr.Register(meshgateways.Controller()) mgr.Register(meshconfiguration.Controller()) - - mgr.Register(apigateways.Controller()) }