in src/connection/HttpConnection.ts [327:336]
async close (): Promise<void> {
debug('Closing connection', this.id)
while (this._openRequests > 0) {
await setTimeout(1000)
}
/* istanbul ignore else */
if (this.agent !== undefined) {
this.agent.destroy()
}
}