@iobroker/db-objects-redis 4.0.14-alpha.1-20220219-68f7c087 → 4.0.15

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.
@@ -618,7 +618,8 @@ class ObjectsInRedisClient {
618
618
  } catch (e) {
619
619
  // if unsupported we have a legacy host
620
620
  if (!e.message.includes('UNSUPPORTED')) {
621
- throw e;
621
+ this.log.error(`${this.namespace} Cannot determine Set feature status: ${e.message}`);
622
+ return;
622
623
  } else {
623
624
  this.useSets = false;
624
625
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@iobroker/db-objects-redis",
3
- "version": "4.0.14-alpha.1-20220219-68f7c087",
3
+ "version": "4.0.15",
4
4
  "engines": {
5
5
  "node": ">=12.0.0"
6
6
  },
7
7
  "dependencies": {
8
- "@iobroker/db-base": "4.0.14-alpha.1-20220219-68f7c087",
8
+ "@iobroker/db-base": "4.0.15",
9
9
  "deep-clone": "^3.0.3",
10
10
  "ioredis": "^4.28.2",
11
11
  "node.extend": "^2.0.2",
@@ -36,5 +36,5 @@
36
36
  "lib/",
37
37
  "index.js"
38
38
  ],
39
- "gitHead": "24318a5a0304bc3e974ba8d7eeb77cb472109cd6"
39
+ "gitHead": "d142fc328b96239c2700ed2090eacae2c9982236"
40
40
  }