aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Michael S. Fischer <mfischer-zd@users.noreply.github.com> 2017-03-14 08:48:16 -0700
committerGravatar Miek Gieben <miek@miek.nl> 2017-03-14 15:48:16 +0000
commit5b32a07ae66b352869a685823ba2961b7e03db08 (patch)
treee6447cb53539536e9a4a943ea4a687a78795e5d1
parentbfaf9e0aecc74d4e6897cdb9c6ef51b4b21ffd4e (diff)
downloadcoredns-5b32a07ae66b352869a685823ba2961b7e03db08.tar.gz
coredns-5b32a07ae66b352869a685823ba2961b7e03db08.tar.zst
coredns-5b32a07ae66b352869a685823ba2961b7e03db08.zip
Fix proxy middleware health_check doc (#590)
According to the code, the default health check interval is 30 seconds, not 10 as stated in the documentation. (The alternative would be to adjust the interval in the code.)
-rw-r--r--middleware/proxy/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/middleware/proxy/README.md b/middleware/proxy/README.md
index 4a69e999e..2dee30052 100644
--- a/middleware/proxy/README.md
+++ b/middleware/proxy/README.md
@@ -43,7 +43,7 @@ proxy FROM TO... {
* `health_check` will check path (on port) on each backend. If a backend returns a status code of
200-399, then that backend is healthy. If it doesn't, the backend is marked as unhealthy for
duration and no requests are routed to it. If this option is not provided then health checks are
- disabled. The default duration is 10 seconds ("10s").
+ disabled. The default duration is 30 seconds ("30s").
* **IGNORED_NAMES** in `except` is a space-separated list of domains to exclude from proxying.
Requests that match none of these names will be passed through.
* `spray` when all backends are unhealthy, randomly pick one to send the traffic to. (This is