Skip to content

Commit

Permalink
provider/aws: Increase timeout for retrying creation of CW log subs (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored May 22, 2017
1 parent 3fe1cda commit a6617c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func resourceAwsCloudwatchLogSubscriptionFilterCreate(d *schema.ResourceData, me
params := getAwsCloudWatchLogsSubscriptionFilterInput(d)
log.Printf("[DEBUG] Creating SubscriptionFilter %#v", params)

return resource.Retry(3*time.Minute, func() *resource.RetryError {
return resource.Retry(5*time.Minute, func() *resource.RetryError {
_, err := conn.PutSubscriptionFilter(&params)

if err == nil {
Expand Down

0 comments on commit a6617c5

Please sign in to comment.