Skip to content

Commit

Permalink
fix: flink metrics watch logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
lintingbin committed Jan 10, 2025
1 parent e3c6c46 commit 0e33bfd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ case class FlinkMetricCV(

def equalsPayload(another: FlinkMetricCV): Boolean = {
groupId == another.groupId &&
totalJmMemory == another.totalTmMemory &&
totalJmMemory == another.totalJmMemory &&
totalTmMemory == another.totalTmMemory &&
totalTm == another.totalTm &&
totalSlot == another.totalSlot &&
Expand Down

0 comments on commit 0e33bfd

Please sign in to comment.