fmt
This commit is contained in:
parent
069f758efb
commit
d7786473df
|
@ -107,7 +107,7 @@ func resourceAwsLaunchConfigurationCreate(d *schema.ResourceData, meta interface
|
||||||
|
|
||||||
// We put a Retry here since sometimes eventual consistency bites
|
// We put a Retry here since sometimes eventual consistency bites
|
||||||
// us and we need to retry a few times to get the LC to load properly
|
// us and we need to retry a few times to get the LC to load properly
|
||||||
return resource.Retry(30 * time.Second, func() error {
|
return resource.Retry(30*time.Second, func() error {
|
||||||
return resourceAwsLaunchConfigurationRead(d, meta)
|
return resourceAwsLaunchConfigurationRead(d, meta)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,8 +11,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestStateAddModule(t *testing.T) {
|
func TestStateAddModule(t *testing.T) {
|
||||||
cases := []struct{
|
cases := []struct {
|
||||||
In [][]string
|
In [][]string
|
||||||
Out [][]string
|
Out [][]string
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue