@budibase/server 2.6.19-alpha.46 → 2.6.19-alpha.48
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/dist/automation.js +5 -1
- package/dist/automation.js.map +2 -2
- package/dist/index.js +5 -1
- package/dist/index.js.map +2 -2
- package/dist/query.js +5 -1
- package/dist/query.js.map +2 -2
- package/package.json +8 -8
package/dist/automation.js
CHANGED
|
@@ -2906,7 +2906,11 @@ var init_redis = __esm({
|
|
|
2906
2906
|
init_utils2();
|
|
2907
2907
|
init_timers2();
|
|
2908
2908
|
if (environment_default2.MOCK_REDIS) {
|
|
2909
|
-
|
|
2909
|
+
try {
|
|
2910
|
+
MockRedis = require("ioredis-mock");
|
|
2911
|
+
} catch (err) {
|
|
2912
|
+
console.log("Mock redis unavailable");
|
|
2913
|
+
}
|
|
2910
2914
|
}
|
|
2911
2915
|
RETRY_PERIOD_MS = 2e3;
|
|
2912
2916
|
STARTUP_TIMEOUT_MS = 5e3;
|