@okf/ootils 1.5.1 → 1.5.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/dist/node.js +1 -1
- package/dist/node.mjs +1 -1
- package/package.json +1 -1
package/dist/node.js
CHANGED
|
@@ -1029,7 +1029,7 @@ var require_GET_GLOBAL_BULLMQ_CONFIG = __commonJS({
|
|
|
1029
1029
|
...acc,
|
|
1030
1030
|
[key]: {
|
|
1031
1031
|
...BASE_BULLMQ_CONFIG2[key],
|
|
1032
|
-
id: BASE_BULLMQ_CONFIG2[key].id + `_${env}`,
|
|
1032
|
+
id: BASE_BULLMQ_CONFIG2[key].id + `_${process.env.NODE_ENV !== "production" ? `local_${process.env.USER || process.env.USERNAME}` : env}`,
|
|
1033
1033
|
// suffix env to queue to keep it unique for each environment
|
|
1034
1034
|
queueConfig: {
|
|
1035
1035
|
connection: redisConnectionForBullMQ,
|
package/dist/node.mjs
CHANGED
|
@@ -1034,7 +1034,7 @@ var require_GET_GLOBAL_BULLMQ_CONFIG = __commonJS({
|
|
|
1034
1034
|
...acc,
|
|
1035
1035
|
[key]: {
|
|
1036
1036
|
...BASE_BULLMQ_CONFIG2[key],
|
|
1037
|
-
id: BASE_BULLMQ_CONFIG2[key].id + `_${env}`,
|
|
1037
|
+
id: BASE_BULLMQ_CONFIG2[key].id + `_${process.env.NODE_ENV !== "production" ? `local_${process.env.USER || process.env.USERNAME}` : env}`,
|
|
1038
1038
|
// suffix env to queue to keep it unique for each environment
|
|
1039
1039
|
queueConfig: {
|
|
1040
1040
|
connection: redisConnectionForBullMQ,
|