@itentialopensource/adapter-utils
Advanced tools
Comparing version 4.11.0 to 4.11.1
## 4.11.1 [08-28-2019] | ||
* Resolves PH-41541 fixes some bugs found | ||
Closes PH-41541 | ||
See merge request itentialopensource/adapter-utils!107 | ||
--- | ||
## 4.11.0 [08-28-2019] | ||
@@ -3,0 +13,0 @@ |
@@ -80,3 +80,3 @@ /* @copyright Itential, LLC 2018 */ | ||
try { | ||
retError = JSON.parse(perror.raw_response); | ||
retError = JSON.parse(perror.raw_response.trim()); | ||
} catch (ex) { | ||
@@ -261,3 +261,3 @@ // otherwise log parse failure but still return the unparsed error | ||
try { | ||
retResponse = JSON.parse(resObj.response); | ||
retResponse = JSON.parse(resObj.response.trim()); | ||
} catch (ex) { | ||
@@ -751,3 +751,3 @@ // otherwise log parse failure and return the unparsed response | ||
this.basepath = properties.base_path; | ||
basepathGl = this.base_path; | ||
basepathGl = this.basepath; | ||
this.globalRequest = null; | ||
@@ -754,0 +754,0 @@ |
{ | ||
"name": "@itentialopensource/adapter-utils", | ||
"version": "4.11.0", | ||
"version": "4.11.1", | ||
"description": "Itential Adapter Utility Libraries", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1124987