Skip to content

Commit

Permalink
Merge pull request #8428 from newcontext-oss/master
Browse files Browse the repository at this point in the history
Increase EMR Cluster deletion timeout to 20 minutes
  • Loading branch information
bflad authored Apr 24, 2019
2 parents fb8d81d + 45d8a85 commit de6add1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_emr_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ func resourceAwsEMRClusterDelete(d *schema.ResourceData, meta interface{}) error
return err
}

err = resource.Retry(10*time.Minute, func() *resource.RetryError {
err = resource.Retry(20*time.Minute, func() *resource.RetryError {
resp, err := conn.ListInstances(&emr.ListInstancesInput{
ClusterId: aws.String(d.Id()),
})
Expand Down

0 comments on commit de6add1

Please sign in to comment.