@opra/kafka 1.0.3 → 1.0.4
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/cjs/kafka-adapter.js +1 -0
- package/esm/kafka-adapter.js +1 -0
- package/package.json +3 -3
package/cjs/kafka-adapter.js
CHANGED
|
@@ -181,6 +181,7 @@ class KafkaAdapter extends core_1.PlatformAdapter {
|
|
|
181
181
|
else {
|
|
182
182
|
const x = this._config.consumers?.[kafkaMetadata.consumer];
|
|
183
183
|
if (x) {
|
|
184
|
+
operationConfig.consumer.groupId = kafkaMetadata.consumer;
|
|
184
185
|
Object.assign(operationConfig.consumer, x);
|
|
185
186
|
}
|
|
186
187
|
}
|
package/esm/kafka-adapter.js
CHANGED
|
@@ -178,6 +178,7 @@ export class KafkaAdapter extends PlatformAdapter {
|
|
|
178
178
|
else {
|
|
179
179
|
const x = this._config.consumers?.[kafkaMetadata.consumer];
|
|
180
180
|
if (x) {
|
|
181
|
+
operationConfig.consumer.groupId = kafkaMetadata.consumer;
|
|
181
182
|
Object.assign(operationConfig.consumer, x);
|
|
182
183
|
}
|
|
183
184
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opra/kafka",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Opra Kafka package",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@opra/common": "^1.0.
|
|
9
|
-
"@opra/core": "^1.0.
|
|
8
|
+
"@opra/common": "^1.0.4",
|
|
9
|
+
"@opra/core": "^1.0.4",
|
|
10
10
|
"node-events-async": "^1.0.0",
|
|
11
11
|
"tslib": "^2.7.0",
|
|
12
12
|
"valgen": "^5.10.0"
|