Skip to content

Commit

Permalink
chore: fix golangci-lint finding
Browse files Browse the repository at this point in the history
  • Loading branch information
jar-b committed Dec 13, 2024
1 parent 5728634 commit e5f5fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/rds/cluster_snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down

0 comments on commit e5f5fe6

Please sign in to comment.