From e78d5d42c3c5bd93ce452eccc5147c0b23b180bc Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 4 Sep 2018 21:20:42 -0700 Subject: [PATCH] Fix http.timeout documentation. This was changed in #2770, but the docs were never updated. --- src/doc/src/reference/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/src/reference/config.md b/src/doc/src/reference/config.md index 778457829d0..cc259037730 100644 --- a/src/doc/src/reference/config.md +++ b/src/doc/src/reference/config.md @@ -92,7 +92,7 @@ token = "..." # Access token (found on the central repo’s website) [http] proxy = "host:port" # HTTP proxy to use for HTTP requests (defaults to none) # in libcurl format, e.g. "socks5h://host:port" -timeout = 60000 # Timeout for each HTTP request, in milliseconds +timeout = 30 # Timeout for each HTTP request, in seconds cainfo = "cert.pem" # Path to Certificate Authority (CA) bundle (optional) check-revoke = true # Indicates whether SSL certs are checked for revocation low-speed-limit = 5 # Lower threshold for bytes/sec (10 = default, 0 = disabled)