in src/pool/BaseConnectionPool.ts [123:141]
password: decodeURIComponent(opts.url.password)
}
}
/* istanbul ignore else */
if (opts.tls == null) opts.tls = this._tls
/* istanbul ignore else */
if (opts.agent == null) opts.agent = this._agent
/* istanbul ignore else */
if (opts.proxy == null) opts.proxy = this._proxy
/* istanbul ignore else */
if (opts.diagnostic == null) opts.diagnostic = this.diagnostic
/* istanbul ignore else */
if (opts.caFingerprint == null) opts.caFingerprint = this[kCaFingerprint]
const connection = new this.Connection(opts)
for (const conn of this.connections) {
if (conn.id === connection.id) {