Skip to content

Commit

Permalink
fix(client): remove deprecated _pendingSends
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Aug 1, 2015
1 parent 0e41686 commit 9ffe830
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/amqp_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ function AMQPClient(policy) {
this._attaching = {};
this._senderAttaching = {};
this._attached = {};
this._pendingSends = {};
this._unsettledSends = {};

this._reconnect = null;
Expand Down Expand Up @@ -471,7 +470,6 @@ AMQPClient.prototype._clearConnectionState = function(saveReconnectDetails) {
this.policy = u.deepMerge(this._originalPolicy);

if (!saveReconnectDetails) {
this._pendingSends = {};
this._reattach = {};
this._reconnect = null;
}
Expand All @@ -489,7 +487,6 @@ AMQPClient.prototype._newSession = function(conn) {
AMQPClient.prototype._preventReconnect = function() {
this._reconnect = null;
this._reattach = {};
this._pendingSends = {};
};

AMQPClient.prototype._shouldReconnect = function() {
Expand Down

0 comments on commit 9ffe830

Please sign in to comment.