From 7945b68693d11d9496d1090e7ad4232b0ecb6ef0 Mon Sep 17 00:00:00 2001 From: Alexandre GOMES Date: Mon, 3 Feb 2020 10:34:23 +0100 Subject: [PATCH] Fix typo in NoLivingConnectionsError (#1045) Co-authored-by: Tomas Della Vedova --- lib/Transport.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transport.js b/lib/Transport.js index d00a2e8bb..57d205529 100644 --- a/lib/Transport.js +++ b/lib/Transport.js @@ -109,7 +109,7 @@ class Transport { if (meta.aborted === true) return meta.connection = this.getConnection({ requestId: meta.request.id }) 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