benlamonica commented on a change in pull request #6610: [FLINK-10204] - fix 
serialization/copy error for LatencyMarker records.
URL: https://github.com/apache/flink/pull/6610#discussion_r212666184
 
 

 ##########
 File path: 
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/streamrecord/LatencyMarker.java
 ##########
 @@ -67,31 +67,40 @@ public int getSubtaskIndex() {
        // 
------------------------------------------------------------------------
 
        @Override
-       public boolean equals(Object o) {
-               if (this == o) {
+       public boolean equals(Object obj) {
+               if (this == obj) {
                        return true;
                }
-               if (o == null || getClass() != o.getClass()){
+               if (obj == null) {
                        return false;
                }
-
-               LatencyMarker that = (LatencyMarker) o;
-
-               if (markedTime != that.markedTime) {
+               if (getClass() != obj.getClass()) {
                        return false;
                }
-               if (operatorId != that.operatorId) {
 
 Review comment:
   Sure, I will do that.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to