Skip to content

Commit

Permalink
Trendyol#29 increases message consume timeout limit
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan.kavraz committed May 19, 2024
1 parent e160087 commit e60a4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/Implementations/KafkaRetryJobService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Action<IConsumer<string,string>, ConsumeResult<string,string>> consumerCommitStr

while (currentLag > 0 && messageConsumeLimitPerTopic > 0)
{
var result = consumer.Consume(TimeSpan.FromSeconds(3));
var result = consumer.Consume(TimeSpan.FromSeconds(10));

if (result is null)
{
Expand Down

0 comments on commit e60a4c0

Please sign in to comment.