From e5f5fe6c542405ae059e28ee52b7ffb2fd532ae9 Mon Sep 17 00:00:00 2001 From: Jared Baker Date: Thu, 12 Dec 2024 21:54:40 -0500 Subject: [PATCH] chore: fix golangci-lint finding --- internal/service/rds/cluster_snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/rds/cluster_snapshot.go b/internal/service/rds/cluster_snapshot.go index 728a5b2ee6c..ff228791809 100644 --- a/internal/service/rds/cluster_snapshot.go +++ b/internal/service/rds/cluster_snapshot.go @@ -339,7 +339,7 @@ func statusDBClusterSnapshot(ctx context.Context, conn *rds.Client, id string) r } } -func waitDBClusterSnapshotCreated(ctx context.Context, conn *rds.Client, id string, timeout time.Duration) (*types.DBClusterSnapshot, error) { +func waitDBClusterSnapshotCreated(ctx context.Context, conn *rds.Client, id string, timeout time.Duration) (*types.DBClusterSnapshot, error) { //nolint:unparam stateConf := &retry.StateChangeConf{ Pending: []string{clusterSnapshotStatusCreating, clusterSnapshotStatusCopying}, Target: []string{clusterSnapshotStatusAvailable},