Skip to content

Commit

Permalink
Попробовал убрать костыль
Browse files Browse the repository at this point in the history
  • Loading branch information
e.makrushin committed May 29, 2024
1 parent 5ad16b4 commit 465b9f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vostok.Hercules.Consumers/Kafka/KafkaTopicReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private RawReadStreamResult ReadInternal(ReadStreamQuery query)

while (eventsCount < query.Limit)
{
message = consumer.Consume(TimeSpan.Zero);
message = consumer.Consume(settings.ConsumeTimeout); // TimeSpan.Zero
if (message?.Message is null)
break;

Expand Down

0 comments on commit 465b9f9

Please sign in to comment.