retryCountExceeded to retryLimitExceeded

- Roman Skvazh

Closes #124
This commit is contained in:
Andrew Naylor 2013-09-29 22:11:50 +01:00
Родитель 35c24aa2b9
Коммит a38b29ef31
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -417,8 +417,8 @@ Connection.prototype.setCacheLength = function(newLength) {
*/
Connection.prototype.bufferNotification = function (notification) {
if (notification.retryLimit === 0) {
this.raiseError(Errors['retryCountExceeded'], notification);
this.emit('transmissionError', Errors['retryCountExceeded'], notification.notification, notification.recipient);
this.raiseError(Errors['retryLimitExceeded'], notification);
this.emit('transmissionError', Errors['retryLimitExceeded'], notification.notification, notification.recipient);
return;
}
notification.retryLimit -= 1;