Skip to content

Commit

Permalink
Iterable Consumer Example fix (#806)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Aug 12, 2023
1 parent 46bd533 commit dbcdfe2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static void Main(String[] args)
msg.Ack();
if (++count % REPORT_EVERY == 0)
{
report("Post-stop loop running", sw.ElapsedMilliseconds, ++count);
report("Post-stop loop running", sw.ElapsedMilliseconds, count);
}
msg = consumer.NextMessage(1000);
}
Expand Down

0 comments on commit dbcdfe2

Please sign in to comment.