-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove kafka client rename #353
Conversation
src/models/settlement/facade.js
Outdated
@@ -1401,8 +1402,14 @@ const Facade = { | |||
.where('swc.currencyId', knex.raw('COALESCE(?, swc.currencyId)', settlementModel.currencyId)) | |||
.whereIn('swsc.settlementWindowStateId', [enums.settlementWindowStates.CLOSED, enums.settlementWindowStates.ABORTED, enums.settlementWindowStates.PENDING_SETTLEMENT]) | |||
.whereIn('swcsc.settlementWindowStateId', [enums.settlementWindowStates.CLOSED, enums.settlementWindowStates.ABORTED]) | |||
.distinct('swc.settlementWindowContentId') | |||
const swcIdArray = swcIdList.map(record => record.settlementWindowContentId) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this showing as a new addition?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
This will ensure that the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
removed kafka client renaming functionality into register handlers - This will ensure that the group.id and client.id set in the config/default.json is correctly used by the Kafka client.
addded
"allow.auto.create.topics": true
into consumers rdkafka config indefault.json
due to changes in node-rdkafka version 2.10.0