[
https://issues.apache.org/jira/browse/BEAM-1760?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Davor Bonaci 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
>
> 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)