@lad-tech/nsc-toolkit 1.26.0 → 1.26.1
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 +3 -3
- package/dist/StreamManager.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.26.1](https://github.com/lad-tech/nsc-toolkit/compare/v1.26.0...v1.26.1) (2025-01-17)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* Remove inbox from config old consumer ([#140](https://github.com/lad-tech/nsc-toolkit/issues/140)) ([69ddd98](https://github.com/lad-tech/nsc-toolkit/commit/69ddd980ebd7258991542946a1252b11d424199a))
|
package/dist/StreamManager.js
CHANGED
|
@@ -114,7 +114,7 @@ class StreamManager extends Root_1.Root {
|
|
|
114
114
|
await this.jsm.consumers.add(streamName, { ...options.config, filter_subject: subject });
|
|
115
115
|
}
|
|
116
116
|
else {
|
|
117
|
-
await this.jsm.consumers.update(streamName, consumerName, { ...options.config, filter_subject: subject });
|
|
117
|
+
await this.jsm.consumers.update(streamName, consumerName, { ...options.config, filter_subject: subject, deliver_subject: undefined });
|
|
118
118
|
}
|
|
119
119
|
}
|
|
120
120
|
const consumer = await this.broker.jetstream().consumers.get(streamName, consumerName);
|