From 8b5cbde39277a7f17a6847164201b8f643c120fb Mon Sep 17 00:00:00 2001 From: Wassim Dhif Date: Wed, 18 Dec 2024 18:09:58 +0100 Subject: [PATCH] Update pkg/databasemonitoring/aws/aurora.go --- pkg/databasemonitoring/aws/aurora.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/databasemonitoring/aws/aurora.go b/pkg/databasemonitoring/aws/aurora.go index d4278f07bcab5..210096195627c 100644 --- a/pkg/databasemonitoring/aws/aurora.go +++ b/pkg/databasemonitoring/aws/aurora.go @@ -47,7 +47,6 @@ func (c *Client) GetAuroraClusterEndpoints(ctx context.Context, dbClusterIdentif return nil, fmt.Errorf("at least one database cluster identifier is required") } clusters := make(map[string]*AuroraCluster, 0) - for _, clusterID := range dbClusterIdentifiers { // TODO: Seth Samuel: This method is not paginated, so if there are more than 100 instances in a cluster, we will only get the first 100 // We should add pagination support to this method at some point