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 2017/11/08 21:25:01 UTC

[jira] [Created] (FLINK-8037) Missing cast in integer arithmetic in TransactionalIdsGenerator#generateIdsToAbort

Ted Yu created FLINK-8037:
-----------------------------

             Summary: Missing cast in integer arithmetic in TransactionalIdsGenerator#generateIdsToAbort
                 Key: FLINK-8037
                 URL: https://issues.apache.org/jira/browse/FLINK-8037
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
  public Set<String> generateIdsToAbort() {
    Set<String> idsToAbort = new HashSet<>();
    for (int i = 0; i < safeScaleDownFactor; i++) {
      idsToAbort.addAll(generateIdsToUse(i * poolSize * totalNumberOfSubtasks));
{code}
The operands are integers where generateIdsToUse() expects long parameter.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)