@exulu/backend 1.30.1 → 1.30.2
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/CHANGELOG.md +2 -2
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [1.30.
|
|
1
|
+
## [1.30.2](https://github.com/Qventu/exulu-backend/compare/v1.30.1...v1.30.2) (2025-11-04)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* add stack log to queue error ([22372bd](https://github.com/Qventu/exulu-backend/commit/22372bd103acaf8346301f9bd7fa3b8ce843b432))
|
package/dist/index.cjs
CHANGED
|
@@ -7795,6 +7795,7 @@ var ExuluQueues = class {
|
|
|
7795
7795
|
}
|
|
7796
7796
|
if (!redisServer.host?.length || !redisServer.port?.length) {
|
|
7797
7797
|
console.error(`[EXULU] no redis server configured, but you are trying to use a queue ( ${name}), likely in an agent or embedder (look for ExuluQueues.register().use() ).`);
|
|
7798
|
+
console.error(new Error().stack);
|
|
7798
7799
|
throw new Error(`[EXULU] no redis server configured.`);
|
|
7799
7800
|
}
|
|
7800
7801
|
const newQueue = new import_bullmq5.Queue(
|
package/dist/index.js
CHANGED
|
@@ -7762,6 +7762,7 @@ var ExuluQueues = class {
|
|
|
7762
7762
|
}
|
|
7763
7763
|
if (!redisServer.host?.length || !redisServer.port?.length) {
|
|
7764
7764
|
console.error(`[EXULU] no redis server configured, but you are trying to use a queue ( ${name}), likely in an agent or embedder (look for ExuluQueues.register().use() ).`);
|
|
7765
|
+
console.error(new Error().stack);
|
|
7765
7766
|
throw new Error(`[EXULU] no redis server configured.`);
|
|
7766
7767
|
}
|
|
7767
7768
|
const newQueue = new Queue3(
|