Fix typo in NoLivingConnectionsError (#1045)
Co-authored-by: Tomas Della Vedova <delvedor@users.noreply.github.com>
This commit is contained in:
committed by
delvedor
parent
2a59c634f7
commit
1a6c36e291
@ -109,7 +109,7 @@ class Transport {
|
|||||||
if (meta.aborted === true) return
|
if (meta.aborted === true) return
|
||||||
meta.connection = this.getConnection({ requestId: meta.request.id })
|
meta.connection = this.getConnection({ requestId: meta.request.id })
|
||||||
if (meta.connection === null) {
|
if (meta.connection === null) {
|
||||||
return callback(new NoLivingConnectionsError('There are not living connections'), result)
|
return callback(new NoLivingConnectionsError('There are no living connections'), result)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make this assignment FAST
|
// TODO: make this assignment FAST
|
||||||
|
|||||||
Reference in New Issue
Block a user