Skip to content

Commit

Permalink
Fixed documentation of open and read timeout form ms -> s
Browse files Browse the repository at this point in the history
  • Loading branch information
anrock-sc committed Nov 18, 2021
1 parent b84a456 commit adc8ab5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ rundeck.storage.provider.[index].config.retryIntervalMilliseconds=1000
Default value: 1000
* **openTimeout**: Open timeout. Connection opening timeout, ms
* **openTimeout**: Open timeout. Connection opening timeout, in seconds
```
rundeck.storage.provider.[index].config.openTimeout=5
```
Default value: 5
* **readTimeout**: Read timeout. Response read timeout, ms
* **readTimeout**: Read timeout. Response read timeout, in seconds
```
rundeck.storage.provider.[index].config.readTimeout=20
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,19 +133,19 @@ static Description getDescription() {
.property(PropertyBuilder.builder()
.string(VAULT_RETRY_INTERVAL_MILLISECONDS)
.title("Retry interval")
.description("Connection retry interval, ms")
.description("Connection retry interval, in ms")
.defaultValue("1000")
)
.property(PropertyBuilder.builder()
.string(VAULT_OPEN_TIMEOUT)
.title("Open timeout")
.description("Connection opening timeout, ms")
.description("Connection opening timeout, in seconds")
.defaultValue("5")
)
.property(PropertyBuilder.builder()
.string(VAULT_READ_TIMEOUT)
.title("Read timeout")
.description("Response read timeout, ms")
.description("Response read timeout, in seconds")
.defaultValue("20")
)
.property(PropertyBuilder.builder()
Expand Down

0 comments on commit adc8ab5

Please sign in to comment.