Fire the feedback event even if there is no feedback to let the consumer know that operation completed without feedback.

This commit is contained in:
Hasan Khan 2013-07-19 11:17:31 -07:00
Родитель 5175a34ec4
Коммит d5e9484a72
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -260,7 +260,7 @@ Feedback.prototype.destroyConnection = function (err) {
Feedback.prototype.resetConnection = function () {
debug("Resetting connection");
if (this.options.batchFeedback && this.feedbackData.length > 0) {
if (this.options.batchFeedback) {
debug("Emitting all feedback tokens");
this.emit('feedback', this.feedbackData);
this.feedbackData = [];