We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30288b3 commit dd4905eCopy full SHA for dd4905e
packages/neo4j-driver-deno/lib/bolt-connection/channel/node/node-channel.js
@@ -290,6 +290,9 @@ export default class NodeChannel {
290
'and that you have compatible encryption settings both on Neo4j server and driver. ' +
291
'Note that the default encryption setting has changed in Neo4j 4.0.'
292
if (err.message) msg += ' Caused by: ' + err.message
293
+ if (this._conn.destroyed) {
294
+ this._open = false
295
+ }
296
this._error = newError(msg, this._connectionErrorCode)
297
if (this.onerror) {
298
this.onerror(this._error)
0 commit comments