notification-processor 4.21.0 → 4.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,7 +6,9 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
6
6
|
|
|
7
7
|
// Generated by CoffeeScript 2.7.0
|
|
8
8
|
(function () {
|
|
9
|
-
var IgnoredError, MaxRetriesProcessor;
|
|
9
|
+
var IgnoredError, MaxRetriesProcessor, Promise;
|
|
10
|
+
|
|
11
|
+
Promise = require("bluebird");
|
|
10
12
|
|
|
11
13
|
IgnoredError = require("../exceptions/ignored.error");
|
|
12
14
|
|
|
@@ -18,6 +20,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
18
20
|
|
|
19
21
|
_classCallCheck(this, MaxRetriesProcessor);
|
|
20
22
|
|
|
23
|
+
this._onIgnoredError_ = this._onIgnoredError_.bind(this);
|
|
21
24
|
this.processor = processor;
|
|
22
25
|
this.maxRetries = maxRetries;
|
|
23
26
|
}
|
|
@@ -65,7 +68,13 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
65
68
|
}, {
|
|
66
69
|
key: "_onIgnoredError_",
|
|
67
70
|
value: function _onIgnoredError_(notification, err) {
|
|
68
|
-
|
|
71
|
+
var _this2 = this;
|
|
72
|
+
|
|
73
|
+
return Promise.try(function () {
|
|
74
|
+
return _this2._onSuccess_(notification, err);
|
|
75
|
+
}).tap(function () {
|
|
76
|
+
throw err;
|
|
77
|
+
});
|
|
69
78
|
}
|
|
70
79
|
}, {
|
|
71
80
|
key: "_isIgnoredError_",
|