From 1942746c484fc736c933678cf0e37dcb2edfe58d Mon Sep 17 00:00:00 2001 From: Miciah Dashiel Butler Masters Date: Wed, 6 Nov 2019 16:27:55 -0500 Subject: [PATCH] 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 --- plugin/reload/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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**