Skip to content

Commit

Permalink
missing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
ryndaniels committed Jun 18, 2019
1 parent a256c7e commit 7f07aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_elasticache_parameter_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func resourceAwsElasticacheParameterGroupDelete(d *schema.ResourceData, meta int
if isResourceTimeoutError(err) {
_, err = conn.DeleteCacheParameterGroup(&deleteOpts)
}
if isAWSErr(err, elasticache.ErrCodeCacheParameterGroupNotFoundFault, "")
if isAWSErr(err, elasticache.ErrCodeCacheParameterGroupNotFoundFault, "") {
return nil
}

Expand Down

0 comments on commit 7f07aaa

Please sign in to comment.