providers/aws: extend InternetGateway timeout to be safe

This commit is contained in:
Mitchell Hashimoto 2014-07-10 15:35:41 -07:00
parent 71b30c633f
commit 265cc4fffa
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ func IGAttachStateRefreshFunc(conn *ec2.EC2, id string, expected string) resourc
ig := &resp.InternetGateways[0]
if time.Now().Sub(start) > 5 * time.Second {
if time.Now().Sub(start) > 10 * time.Second {
return ig, expected, nil
}