Skip to content

Commit

Permalink
provider/aws: Shorting retry timeout for Subnets to 2 minutes, from 5
Browse files Browse the repository at this point in the history
  • Loading branch information
catsby committed May 5, 2015
1 parent 3ce3b7c commit 2724153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_subnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func resourceAwsSubnetDelete(d *schema.ResourceData, meta interface{}) error {
wait := resource.StateChangeConf{
Pending: []string{"pending"},
Target: "destroyed",
Timeout: 5 * time.Minute,
Timeout: 2 * time.Minute,
MinTimeout: 1 * time.Second,
Refresh: func() (interface{}, string, error) {
_, err := conn.DeleteSubnet(req)
Expand Down

0 comments on commit 2724153

Please sign in to comment.