From 4e0f785e89b6f093106b2de0816671c85e307751 Mon Sep 17 00:00:00 2001 From: Nik Everett Date: Thu, 28 Mar 2019 15:13:05 -0400 Subject: [PATCH] Docs: Fix link in changelog (#797) The changelog had a link to `/current/configuration.html` which isn't in the current version of the docs anymore. This changes the link from a fully qualified link to an in-book link. (cherry picked from commit ba6912cb8238c136a33a7046ea815417190bb503) --- docs/changelog.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.asciidoc b/docs/changelog.asciidoc index 4c5351144..602a05eca 100644 --- a/docs/changelog.asciidoc +++ b/docs/changelog.asciidoc @@ -212,7 +212,7 @@ const client = new elasticsearch.Client({ === 1.5 (Feb 6 2014) * Switched out `keepaliveagent` dependency with `forever-agent`, which is used in the ever popular `request` module, and is much simpler - * The option to use keep-alive is now all or nothing. `maxKeepAliveTime` and `maxKeepAliveRequests` config parameters have been replaced by `keepAlive`, which will keeps at least `minSockets` connections open forever. See: http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/configuration.html + * The option to use keep-alive is now all or nothing. `maxKeepAliveTime` and `maxKeepAliveRequests` config parameters have been replaced by `keepAlive`, which will keeps at least `minSockets` connections open forever. See: <> * Closing the client with `keepAlive` turned on will allow the process to exit. https://github.com/elastic/elasticsearch-js/issues/40 * Fixed a bug that caused invalid param/type errors to not be reported properly, in the browser builds that use promises * added the cat.threadPool to the master/1.0/1.x apis