@webqit/webflo 1.0.24 → 1.0.25

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/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "vanila-javascript"
13
13
  ],
14
14
  "homepage": "https://webqit.io/tooling/webflo",
15
- "version": "1.0.24",
15
+ "version": "1.0.25",
16
16
  "license": "MIT",
17
17
  "repository": {
18
18
  "type": "git",
@@ -205,6 +205,7 @@ export class WebfloServer extends WebfloRuntime {
205
205
  this.#sdk.redis = !process.env[this.#cx.server.capabilities.redis_url_variable]
206
206
  ? new Redis : new Redis(process.env[this.#cx.server.capabilities.redis_url_variable], {
207
207
  tls: { rejectUnauthorized: false }, // Required for Upstash
208
+ family: 6
208
209
  });
209
210
  console.log('Redis capabilities');
210
211
  }