You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by "Daniel Halperin (JIRA)" <ji...@apache.org> on 2017/04/03 22:12:41 UTC

[jira] [Assigned] (BEAM-1760) Potential null dereference in HDFSFileSink#doFinalize

     [ https://issues.apache.org/jira/browse/BEAM-1760?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Halperin reassigned BEAM-1760:
-------------------------------------

    Assignee: Ted Yu  (was: Davor Bonaci)

> Potential null dereference in HDFSFileSink#doFinalize
> -----------------------------------------------------
>
>                 Key: BEAM-1760
>                 URL: https://issues.apache.org/jira/browse/BEAM-1760
>             Project: Beam
>          Issue Type: Bug
>          Components: sdk-java-core
>            Reporter: Ted Yu
>            Assignee: Ted Yu
>            Priority: Minor
>             Fix For: Not applicable
>
>
> Here is related code:
> {code}
>       for (FileStatus s : statuses) {
>         String name = s.getPath().getName();
>         int pos = name.indexOf('.');
>         String ext = pos > 0 ? name.substring(pos) : "";
>         fs.rename(
>             s.getPath(),
>             new Path(s.getPath().getParent(), String.format("part-r-%05d%s", i, ext)));
>         i++;
>       }
>     }
> {code}
> We should check whether s.getPath().getParent() is null.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)