Skip to content

Commit

Permalink
Fixed flaky test testAccumulativeStats() (apache#10820)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlg99 authored Jun 7, 2021
1 parent f25b4a5 commit 680b95b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public void testAccumulativeStats() throws Exception {
assertEquals(stats.getBytesOutCounter(), 0);
assertEquals(stats.getMsgOutCounter(), 0);

producer.newMessage().value("test").eventTime(5).send();
producer.newMessage().value("test").eventTime(5).send();

Message<String> msg = consumer1.receive();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ public void testAccumulativeStats() throws Exception {
assertEquals(stats.getBytesOutCounter(), 0);
assertEquals(stats.getMsgOutCounter(), 0);

producer.newMessage().value("test").eventTime(5).send();
producer.newMessage().value("test").eventTime(5).send();

Message<String> msg = consumer1.receive();
Expand Down

0 comments on commit 680b95b

Please sign in to comment.