@f5devcentral/f5-cloud-libs
Advanced tools
Comparing version 4.14.0 to 4.15.0
@@ -1018,7 +1018,9 @@ /** | ||
let names; | ||
const asmDataSyncGroupRegPattern = new RegExp('^datasync-*.*-dg$'); | ||
if (deviceGroup === 'device_trust_group') { | ||
this.logger.silly('Ignoring', deviceGroup, 'which is read only'); | ||
if (deviceGroup === 'device_trust_group' || asmDataSyncGroupRegPattern.test(deviceGroup)) { | ||
this.logger.silly('Ignoring', deviceGroup, 'which is read only or does not require device removal'); | ||
return q(); | ||
} | ||
this.logger.silly('Processing Device Group', deviceGroup); | ||
@@ -1025,0 +1027,0 @@ if (!Array.isArray(deviceNames)) { |
@@ -1375,3 +1375,9 @@ /** | ||
logger.silly(`ucsFilePath: ${ucsFilePath}`); | ||
fs.mkdirSync(ucsFilePath.substr(0, ucsFilePath.lastIndexOf('/'))); | ||
try { | ||
fs.mkdirSync(ucsFilePath.substr(0, ucsFilePath.lastIndexOf('/'))); | ||
} catch (err) { | ||
if (err.code !== 'EEXIST') { | ||
deferred.reject(err); | ||
} | ||
} | ||
fs.writeFile(ucsFilePath, ucsData, (err) => { | ||
@@ -1378,0 +1384,0 @@ logger.silly('finished writing ucsData'); |
{ | ||
"name": "@f5devcentral/f5-cloud-libs", | ||
"version": "4.14.0", | ||
"version": "4.15.0", | ||
"description": "Common library code and scripts for deploying a BIG-IP in a cloud environment", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
# Release notes | ||
## Release 4.15.0 | ||
* Fix updateAutoScaleUcs script to address problem with restoring UCS file on new BIGIP device | ||
* Introduce optimization for sync cluster termination; devices won't be deleted from ASM specific data sync groups | ||
* Expose parameter in AWS Clour provider to allow pass number of message consumed in signle autoscale run | ||
* Fix to pervent failure during UCS temp directory creation | ||
## Release 4.14.0 | ||
@@ -4,0 +10,0 @@ * Update httpUtil to include logging HTTP body for error message handling |
@@ -36,3 +36,3 @@ /** | ||
return options | ||
.version('4.14.0') | ||
.version('4.15.0') | ||
.option( | ||
@@ -39,0 +39,0 @@ '--host <ip_address>', |
@@ -42,3 +42,3 @@ /** | ||
options | ||
.version('4.14.0') | ||
.version('4.15.0') | ||
.option( | ||
@@ -45,0 +45,0 @@ '--data-file <data_file>', |
@@ -61,3 +61,3 @@ /** | ||
options | ||
.version('4.14.0') | ||
.version('4.15.0') | ||
.option( | ||
@@ -64,0 +64,0 @@ '--background', |
@@ -36,3 +36,3 @@ /** | ||
options | ||
.version('4.14.0') | ||
.version('4.15.0') | ||
.option( | ||
@@ -39,0 +39,0 @@ '--length <password_length>', |
@@ -55,3 +55,3 @@ /** | ||
options | ||
.version('4.14.0') | ||
.version('4.15.0') | ||
.option( | ||
@@ -58,0 +58,0 @@ '--cloud <cloud_provider>', |
@@ -73,3 +73,3 @@ /** | ||
options | ||
.version('4.14.0') | ||
.version('4.15.0') | ||
.option( | ||
@@ -76,0 +76,0 @@ '--host <ip_address>', |
@@ -52,3 +52,3 @@ /** | ||
options | ||
.version('4.14.0') | ||
.version('4.15.0') | ||
.option( | ||
@@ -55,0 +55,0 @@ '--background', |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
3354913
156
38830