From 9ecc7e1f2f266b5cc2a89ecba9e5ab25c6b62b25 Mon Sep 17 00:00:00 2001 From: Marouen SAYARI Date: Mon, 30 May 2022 09:54:34 +0100 Subject: [PATCH] Fix to proxy connection string value (#1706) --- docs/connecting.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/connecting.asciidoc b/docs/connecting.asciidoc index 239eea79e..eb03a39f8 100644 --- a/docs/connecting.asciidoc +++ b/docs/connecting.asciidoc @@ -553,7 +553,7 @@ Basic authentication is supported as well: ---- const client = new Client({ node: 'http://localhost:9200', - proxy: 'http:user:pwd@//localhost:8080' + proxy: 'http://user:pwd@localhost:8080' }) ----