Comparing version 1.5.0 to 1.5.1
@@ -0,1 +1,8 @@ | ||
## [1.5.1](https://github.com/TinkoffCreditSystems/cachalot/compare/v1.5.0...v1.5.1) (2020-02-12) | ||
### Bug Fixes | ||
* Queue delete not touched tags command if adapter is not connected ([ce3c8f5](https://github.com/TinkoffCreditSystems/cachalot/commit/ce3c8f5)) | ||
# [1.5.0](https://github.com/TinkoffCreditSystems/cachalot/compare/v1.4.0...v1.5.0) (2020-02-04) | ||
@@ -2,0 +9,0 @@ |
@@ -68,3 +68,3 @@ "use strict"; | ||
this.cachedCommand(this.setTagVersions.bind(this), tags.map(tag => create_tag_1.default(tag))), | ||
this.deleteNotTouchedTags(tags) | ||
this.cachedCommand(this.deleteNotTouchedTags.bind(this), tags) | ||
]); | ||
@@ -185,3 +185,3 @@ } | ||
if (connectionStatus !== connection_status_1.ConnectionStatus.CONNECTED) { | ||
return this.commandsQueue.push({ | ||
this.commandsQueue.push({ | ||
fn, | ||
@@ -191,3 +191,5 @@ params: args | ||
} | ||
return fn(...args); | ||
else { | ||
await fn(...args); | ||
} | ||
} | ||
@@ -194,0 +196,0 @@ /** |
{ | ||
"name": "cachalot", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "Cache manager for nodejs with support different cache strategies", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
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
130428
1829