@jetit/publisher 2.0.1 → 2.0.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/package.json +1 -1
- package/src/lib/redis/streams.js +1 -1
package/package.json
CHANGED
package/src/lib/redis/streams.js
CHANGED
|
@@ -196,7 +196,7 @@ class Streams {
|
|
|
196
196
|
console.log(`Group created created for ${JSON.stringify({ streamName, cgn: this.consumerGroupName })}`);
|
|
197
197
|
})
|
|
198
198
|
.catch((e) => {
|
|
199
|
-
console.log(`Group creation failed with error ${e.message} for ${JSON.stringify({ streamName, cgn: this.consumerGroupName })}`);
|
|
199
|
+
console.log(`PUBLISHER: Group creation failed with error ${e.message} for ${JSON.stringify({ streamName, cgn: this.consumerGroupName })}`);
|
|
200
200
|
});
|
|
201
201
|
const createConsumerStatus = (yield this.redisGroups.xgroup('CREATECONSUMER', streamName, this.consumerGroupName, this.instanceId));
|
|
202
202
|
yield this.redisGroups.sadd(key, eventName);
|