We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec55945 commit 27529eaCopy full SHA for 27529ea
cfg/config.json
@@ -131,6 +131,7 @@
131
"provider": "kafka",
132
"groupId": "restore-fulfillment-srv",
133
"latestOffset": false,
134
+ "timeout": 15000,
135
"kafka": {
136
"clientId": "restore-fulfillment-srv",
137
"brokers": [
src/services/fulfillment.ts
@@ -277,6 +277,7 @@ export class FulfillmentService
277
)
278
279
this.tech_user = cfg?.get('authorization:techUser');
280
+ this.kafka_timeout = cfg.get('events:kafka:timeout') ?? 5000;
281
}
282
283
protected async aggregateProductBundles(
0 commit comments