-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Description
Near line 178, this code doesn't set cbFired to true:
onError = function(reason) {
if (!cbFired && typeof cb === 'function') {
cb(new Error(reason));
}
},
onClose = function() {
if (!cbFired && typeof cb === 'function') {
cb();
}
},If a TCP error occurs, the callback is called twice.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels