Fix to proxy connection string value (#1706)

This commit is contained in:
Marouen SAYARI
2022-05-30 09:54:34 +01:00
committed by GitHub
parent 496161acdf
commit 9ecc7e1f2f

View File

@ -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'
})
----