provider/aws: Beanstalk environments, bump the minimum timeout between API calls

This commit is contained in:
clint shryock 2016-07-06 16:02:13 -05:00
parent 1401a52a5c
commit d2c9cc338e
1 changed files with 3 additions and 3 deletions

View File

@ -249,7 +249,7 @@ func resourceAwsElasticBeanstalkEnvironmentCreate(d *schema.ResourceData, meta i
Refresh: environmentStateRefreshFunc(conn, d.Id()),
Timeout: waitForReadyTimeOut,
Delay: 10 * time.Second,
MinTimeout: 3 * time.Second,
MinTimeout: 20 * time.Second,
}
_, err = stateConf.WaitForState()
@ -321,7 +321,7 @@ func resourceAwsElasticBeanstalkEnvironmentUpdate(d *schema.ResourceData, meta i
Refresh: environmentStateRefreshFunc(conn, d.Id()),
Timeout: waitForReadyTimeOut,
Delay: 10 * time.Second,
MinTimeout: 3 * time.Second,
MinTimeout: 20 * time.Second,
}
_, err = stateConf.WaitForState()
@ -567,7 +567,7 @@ func resourceAwsElasticBeanstalkEnvironmentDelete(d *schema.ResourceData, meta i
Refresh: environmentStateRefreshFunc(conn, d.Id()),
Timeout: waitForReadyTimeOut,
Delay: 10 * time.Second,
MinTimeout: 3 * time.Second,
MinTimeout: 20 * time.Second,
}
_, err = stateConf.WaitForState()