We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39234ae commit 220e461Copy full SHA for 220e461
packages/kafka/lib/AbstractKafkaConsumer.ts
@@ -216,7 +216,7 @@ export abstract class AbstractKafkaConsumer<
216
217
// we are not waiting for the stream to complete
218
// because init() must return promised void
219
- this.handleSyncStream(stream).catch(this.handlerError)
+ this.handleSyncStream(stream).catch((error) => this.handlerError(error))
220
}
221
222
this.consumerStream.on('error', (error) => this.handlerError(error))
0 commit comments