Merge pull request #6727 from hashicorp/fix_6723

reset poll delay seconds default to 2 because it can actuall be used …
This commit is contained in:
Adrien Delorme 2018-10-03 11:15:42 +02:00 committed by GitHub
commit f44dfcc62f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ func getOverride(varInfo envInfo) envInfo {
func getEnvOverrides() overridableWaitVars {
// Load env vars from environment.
envValues := overridableWaitVars{
envInfo{"AWS_POLL_DELAY_SECONDS", 0, false},
envInfo{"AWS_POLL_DELAY_SECONDS", 2, false},
envInfo{"AWS_MAX_ATTEMPTS", 0, false},
envInfo{"AWS_TIMEOUT_SECONDS", 0, false},
}