@iobroker/db-objects-redis 4.0.4 → 4.0.5-alpha.0-20220207-3e046775
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.
|
@@ -4412,9 +4412,10 @@ class ObjectsInRedisClient {
|
|
|
4412
4412
|
script.loaded = true;
|
|
4413
4413
|
} catch (e) {
|
|
4414
4414
|
script.loaded = false;
|
|
4415
|
-
this.log.error(this.namespace
|
|
4415
|
+
this.log.error(`${this.namespace} Cannot load "${script.name}": ${e.message}`);
|
|
4416
4416
|
if (!script.name.startsWith('redlock_')) {
|
|
4417
|
-
//
|
|
4417
|
+
// beause of #1753 an upgrade from < 4.0 will run against the old db server which will not know redlock
|
|
4418
|
+
// TODO: remove if controller 4.0 is old enough
|
|
4418
4419
|
throw new Error(`Cannot load "${script.name}" into objects database: ${e.message}`);
|
|
4419
4420
|
}
|
|
4420
4421
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/db-objects-redis",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.5-alpha.0-20220207-3e046775",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=12.0.0"
|
|
6
6
|
},
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"lib/",
|
|
37
37
|
"index.js"
|
|
38
38
|
],
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "0bd0e8bb98a43b93776e94f84d922fa2766ea2af"
|
|
40
40
|
}
|