Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ void testResetForNewExecutionReleasesPartitions() throws Exception {

execution.markFinished();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both runs linked on the ticket fail at line 95, the assertion before this call. Removing the one after it leaves the flake in place.


assertThat(releasePartitionsFuture).isNotDone();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This also drops the check that finishing the producer does not release its blocking partitions. The final assertion cannot catch that, since the future keeps whichever release completed first.


for (ExecutionVertex executionVertex : producerExecutionJobVertex.getTaskVertices()) {
executionVertex.resetForNewExecution();
}
Expand Down