Skip to content

Commit 843e790

Browse files
committed
Fix connection acquisition timeout error message
1 parent 03755a0 commit 843e790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bolt-connection/src/pool/pool.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class Pool {
109109
const idleCount = this.has(address) ? this._pools[key].length : 0
110110
request.reject(
111111
newError(
112-
`Connection acquisition timed out in ${this._acquisitionTimeout} ms. Poos status: Active conn count = ${activeCount}, Idle conn count = ${idleCount}.`
112+
`Connection acquisition timed out in ${this._acquisitionTimeout} ms. Pool status: Active conn count = ${activeCount}, Idle conn count = ${idleCount}.`
113113
)
114114
)
115115
}

0 commit comments

Comments
 (0)