Skip to content

Commit

Permalink
Fix golangci-lint 'unparam'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Oct 11, 2024
1 parent 2d1a19f commit 0f97476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/rds/cluster_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ func resourceClusterInstanceDelete(ctx context.Context, d *schema.ResourceData,
return diags
}

func waitDBClusterInstanceAvailable(ctx context.Context, conn *rds.Client, id string, timeout time.Duration) (*types.DBInstance, error) {
func waitDBClusterInstanceAvailable(ctx context.Context, conn *rds.Client, id string, timeout time.Duration) (*types.DBInstance, error) { //nolint:unparam
stateConf := &retry.StateChangeConf{
Pending: []string{
instanceStatusBackingUp,
Expand Down

0 comments on commit 0f97476

Please sign in to comment.