@iobroker/db-base 4.0.4 → 4.0.6-alpha.0-20220209-3a6580b2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/redisHandler.js +5 -0
- package/package.json +3 -3
package/lib/redisHandler.js
CHANGED
|
@@ -422,6 +422,11 @@ class RedisHandler extends EventEmitter {
|
|
|
422
422
|
* @private
|
|
423
423
|
*/
|
|
424
424
|
_handleExec(responseId) {
|
|
425
|
+
if (!this.activeMultiCalls[0]) {
|
|
426
|
+
this.sendError(responseId, new Error('EXEC without MULTI'));
|
|
427
|
+
return;
|
|
428
|
+
}
|
|
429
|
+
|
|
425
430
|
this.activeMultiCalls[0].execId = responseId;
|
|
426
431
|
this.activeMultiCalls[0].execCalled = true;
|
|
427
432
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/db-base",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6-alpha.0-20220209-3a6580b2",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=12.0.0"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@iobroker/js-controller-common": "4.0.
|
|
8
|
+
"@iobroker/js-controller-common": "4.0.6-alpha.0-20220209-3a6580b2",
|
|
9
9
|
"deep-clone": "^3.0.3",
|
|
10
10
|
"fs-extra": "^10.0.0",
|
|
11
11
|
"respjs": "^4.2.0"
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"lib/",
|
|
36
36
|
"index.js"
|
|
37
37
|
],
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "ce7aaf729286e88c7a82bca5d9b29c9581d308ba"
|
|
39
39
|
}
|