@budibase/server 2.6.19-alpha.45 → 2.6.19-alpha.47
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/builder/assets/{index.49c9e712.css → index.b7e50d51.css} +2 -2
- package/builder/assets/{index.b81657e8.js → index.e6c92ddc.js} +385 -385
- package/builder/index.html +2 -2
- 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/query.js
CHANGED
|
@@ -2798,7 +2798,11 @@ var init_redis = __esm({
|
|
|
2798
2798
|
init_utils2();
|
|
2799
2799
|
init_timers2();
|
|
2800
2800
|
if (environment_default2.MOCK_REDIS) {
|
|
2801
|
-
|
|
2801
|
+
try {
|
|
2802
|
+
MockRedis = require("ioredis-mock");
|
|
2803
|
+
} catch (err) {
|
|
2804
|
+
console.log("Mock redis unavailable");
|
|
2805
|
+
}
|
|
2802
2806
|
}
|
|
2803
2807
|
RETRY_PERIOD_MS = 2e3;
|
|
2804
2808
|
STARTUP_TIMEOUT_MS = 5e3;
|