Merge pull request #1571 from justinsb/communicate_expected_elb_creation_time

Add message about expected time for NAT gateway creation
This commit is contained in:
Chris Love 2017-01-23 10:09:37 -07:00 committed by GitHub
commit c96a79fd3d
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ func (e *NatGateway) waitAvailable(cloud awsup.AWSCloud) error {
return fmt.Errorf("NAT Gateway %q did not have ID", e.Name)
}
glog.Infof("Waiting for NAT Gateway %q to be available", id)
glog.Infof("Waiting for NAT Gateway %q to be available (this often takes about 5 minutes)", id)
params := &ec2.DescribeNatGatewaysInput{
NatGatewayIds: []*string{e.ID},
}