* @returns {HostConnectionPool}
(options)
| 521 | * @returns {HostConnectionPool} |
| 522 | */ |
| 523 | function newHostConnectionPoolInstance(options) { |
| 524 | options = utils.extend({ logEmitter: function () {} }, defaultOptions, options); |
| 525 | return new HostConnectionPool(newHostInstance(options), 2); |
| 526 | } |
| 527 | |
| 528 | /** |
| 529 | * @param {Object} options |
no test coverage detected