Skip to content

Commit

Permalink
[hotfix][flink-runtime] Fix broken CheckpointStatistics.equals
Browse files Browse the repository at this point in the history
See apache#14390 for more details.
  • Loading branch information
rmetzger committed Dec 16, 2020
1 parent e123c32 commit 3728c15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public boolean equals(Object o) {
stateSize == that.stateSize &&
duration == that.duration &&
alignmentBuffered == that.alignmentBuffered &&
processedData == processedData &&
processedData == that.processedData &&
persistedData == that.persistedData &&
numSubtasks == that.numSubtasks &&
numAckSubtasks == that.numAckSubtasks &&
Expand Down

0 comments on commit 3728c15

Please sign in to comment.