The agent function should take the Connection contructor options as argument (#1332)
This commit is contained in:
committed by
GitHub
parent
ea009da3b6
commit
8ec40547fb
@ -149,7 +149,9 @@ const client = new Client({
|
||||
|
||||
const client = new Client({
|
||||
node: 'http://localhost:9200',
|
||||
agent: () => new CustomAgent()
|
||||
// the function takes as parameter the option
|
||||
// object passed to the Connection constructor
|
||||
agent: (opts) => new CustomAgent()
|
||||
})
|
||||
|
||||
const client = new Client({
|
||||
|
||||
Reference in New Issue
Block a user