You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/01/12 18:01:40 UTC

[jira] [Created] (FLINK-3222) Incorrect shift amount in OperatorCheckpointStats#hashCode()

Ted Yu created FLINK-3222:
-----------------------------

             Summary: Incorrect shift amount in OperatorCheckpointStats#hashCode()
                 Key: FLINK-3222
                 URL: https://issues.apache.org/jira/browse/FLINK-3222
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


Here is related code:
{code}
    result = 31 * result + (int) (subTaskStats.length ^ (subTaskStats.length >>> 32));
{code}
subTaskStats.length is an int.
The shift amount is greater than 31 bits.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)