Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@f5devcentral/atg-storage

Package Overview
Dependencies
Maintainers
14
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@f5devcentral/atg-storage - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

6

CHANGELOG.md
# Changelog
## [Unreleased]
## 1.0.2
### Fixed
- AUTOTOOL-2138: Data store initialization can fail from race condition
## 1.0.1
### Changed
- AUTOTOOL-638: ([GitHub Issue 122](https://github.com/F5Networks/f5-appsvcs-extension/issues/122)) Data store interactions cause errors in mcpd log
### Removed
{
"name": "@f5devcentral/atg-storage",
"version": "1.0.1",
"version": "1.0.2",
"author": "F5 Networks",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -181,3 +181,2 @@ 'use strict';

_lazyInit() {

@@ -188,8 +187,21 @@ if (this._ready) {

return Promise.resolve()
if (this._initRunning) {
return this._initPromise;
}
this._initRunning = true;
this._initPromise = Promise.resolve()
.then(() => this.ensureFolder())
.then(() => this.ensureDataGroup())
.then(() => {
this._initRunning = false;
this._ready = true;
})
.catch((err) => {
this._initRunning = false;
throw err;
});
return this._initPromise;
}

@@ -196,0 +208,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc