diff --git a/common/lib/transport/connectionmanager.js b/common/lib/transport/connectionmanager.js index fb7459fa8b..628c2fad75 100644 --- a/common/lib/transport/connectionmanager.js +++ b/common/lib/transport/connectionmanager.js @@ -993,5 +993,9 @@ var ConnectionManager = (function() { this.ping(this.activeProtocol.getTransport(), onPingComplete); }; + ConnectionManager.prototype.abort = function(error) { + this.activeProtocol.getTransport().abort(error); + }; + return ConnectionManager; })();