Skip to content

Commit

Permalink
Upped default maxRetryTimeout from 30s -> 60s
Browse files Browse the repository at this point in the history
  • Loading branch information
nickithewatt committed Nov 23, 2015
1 parent 49195f8 commit 3809315
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions builtin/providers/vcd/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ func Provider() terraform.ResourceProvider {
"maxRetryTimeout": &schema.Schema{
Type: schema.TypeInt,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("VCD_MAX_RETRY_TIMEOUT", 30),
Description: "Max num seconds to wait for successful response when operating on resources within vCloud (defaults to 30)",
DefaultFunc: schema.EnvDefaultFunc("VCD_MAX_RETRY_TIMEOUT", 60),
Description: "Max num seconds to wait for successful response when operating on resources within vCloud (defaults to 60)",
},
},

Expand Down
2 changes: 1 addition & 1 deletion website/source/docs/providers/vcd/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ The following arguments are used to configure the VMware vCloud Director Provide
amount of time (in seconds) you are prepared to wait for interactions on resources managed
by vCloud Director to be successful. If a resource action fails, the action will be retried
(as long as it is still within the `maxRetryTimeout` value) to try and ensure success.
Defaults to 30 seconds if not set.
Defaults to 60 seconds if not set.
Can also be specified with the `VCD_MAX_RETRY_TIMEOUT` environment variable.

0 comments on commit 3809315

Please sign in to comment.