Skip to content

Commit f108ee8

Browse files
committed
Fix retry duration seconds so it doesn't default to zero seconds.
This was accidentally overriding defaults of 2 or 10 minutes, when no retry was set.
1 parent d9f6068 commit f108ee8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
### Added
44
- Added singular data source for Object Storage objects
55

6+
### Fixed
7+
- Fixed an issue where the default retry timeout is zero seconds if `retry_duration_seconds` isn't specified
8+
69
## 3.12.0 (January 15, 2019)
710

811
### Added

oci/provider.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ func schemaMap() map[string]*schema.Schema {
183183
retryDurationSecondsAttrName: {
184184
Type: schema.TypeInt,
185185
Optional: true,
186-
Default: false,
187186
Description: descriptions[retryDurationSecondsAttrName],
188187
DefaultFunc: schema.MultiEnvDefaultFunc([]string{tfVarName(retryDurationSecondsAttrName), ociVarName(retryDurationSecondsAttrName)}, nil),
189188
},

0 commit comments

Comments
 (0)