@itentialopensource/adapter-utils
Advanced tools
Comparing version 4.38.1 to 4.38.2
## 4.38.2 [12-11-2020] | ||
* fix issue in suspend | ||
See merge request itentialopensource/adapter-utils!200 | ||
--- | ||
## 4.38.1 [12-10-2020] | ||
@@ -3,0 +11,0 @@ |
@@ -559,3 +559,3 @@ /* @copyright Itential, LLC 2018 */ | ||
// set the throttle max (optional - default is 1) | ||
if (props.throttle.concurrent_max && Number(props.throttle.concurrent_max) > -1) { | ||
if (props.throttle.concurrent_max !== null && Number(props.throttle.concurrent_max) > -1) { | ||
if (props.throttle.concurrent_max === 0) { | ||
@@ -562,0 +562,0 @@ log.warn(`${origin}: concurrent_max is set to 0. All requests will be blocked until concurrent_max is not 0`); |
{ | ||
"name": "@itentialopensource/adapter-utils", | ||
"version": "4.38.1", | ||
"version": "4.38.2", | ||
"description": "Itential Adapter Utility Libraries", | ||
@@ -5,0 +5,0 @@ "scripts": { |
488261