Skip to content

Commit

Permalink
fix: flink metrics watch logic error (#4160)
Browse files Browse the repository at this point in the history
  • Loading branch information
lintingbin authored Jan 11, 2025
1 parent e3c6c46 commit 86725fd
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 86725fd

Please sign in to comment.