diff options
author | 2019-11-06 16:27:55 -0500 | |
---|---|---|
committer | 2019-11-06 13:27:55 -0800 | |
commit | 1942746c484fc736c933678cf0e37dcb2edfe58d (patch) | |
tree | a7c43b9faa8d744e6d9b550a6cecdd61cb2f94d8 /plugin | |
parent | 21fe65ed8dc67f38253594ac33670f85627d6f47 (diff) | |
download | coredns-1942746c484fc736c933678cf0e37dcb2edfe58d.tar.gz coredns-1942746c484fc736c933678cf0e37dcb2edfe58d.tar.zst coredns-1942746c484fc736c933678cf0e37dcb2edfe58d.zip |
plugin/reload: Fix "durations" documentation link (#3431)
* plugin/reload/README.md: Fix the syntax of the link to the Go
documentation for duration values.
Signed-off-by: Miciah Dashiel Butler Masters <mmasters@redhat.com>
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/reload/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/reload/README.md b/plugin/reload/README.md index 77e720eac..8e58d1e73 100644 --- a/plugin/reload/README.md +++ b/plugin/reload/README.md @@ -40,7 +40,7 @@ reload [INTERVAL] [JITTER] The plugin will check for changes every **INTERVAL**, subject to +/- the **JITTER** duration. -* **INTERVAL** and **JITTER** are Golang (durations)[[https://golang.org/pkg/time/#ParseDuration](https://golang.org/pkg/time/#ParseDuration)]. +* **INTERVAL** and **JITTER** are Golang [durations](https://golang.org/pkg/time/#ParseDuration). The default **INTERVAL** is 30s, default **JITTER** is 15s, the minimal value for **INTERVAL** is 2s, and for **JITTER** it is 1s. If **JITTER** is more than half of **INTERVAL**, it will be set to half of **INTERVAL** |