utiller 1.0.45 → 1.0.46
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.
package/lib/pooller/index.js
CHANGED
|
@@ -705,7 +705,7 @@ var InfinitePool = /*#__PURE__*/function () {
|
|
|
705
705
|
function enableQueueTerminateBySleepCount() {
|
|
706
706
|
var enable = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
|
|
707
707
|
var interval = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _configerer.configerer.POOLLER_QUEUE_TIME_OF_SLEEP_INTERVAL_DEFAULT;
|
|
708
|
-
var times = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _configerer.configerer.
|
|
708
|
+
var times = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _configerer.configerer.POOLLER_QUEUE_MAX_SLEEP_COUNTS_DEFAULT;
|
|
709
709
|
this.enableOfQueueTerminateSleepCount = enable;
|
|
710
710
|
this.queueMaxSleepCounts = times;
|
|
711
711
|
this.intervalOfQueueSleep = interval;
|
package/package.json
CHANGED