[ https://issues.apache.org/jira/browse/HADOOP-13236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15592423#comment-15592423 ]
Rushabh S Shah edited comment on HADOOP-13236 at 10/20/16 5:30 PM: ------------------------------------------------------------------- branch-2.8 build failed because of the following error: {noformat} [ERROR] /home/yahoo/hudson-ws/workspace/Hadoop-Core-y-branch-2.8-Build/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/fs/viewfs/TestViewFileSystemWithTruncate.java:[112,58] local variable hdfFilepath is accessed from within inner class; needs to be declared final [INFO] 1 error {noformat} [~arpitagarwal]/[~brahma]: can you guys take a look ? was (Author: shahrs87): Building failed because of the following error: {noformat} [ERROR] /home/yahoo/hudson-ws/workspace/Hadoop-Core-y-branch-2.8-Build/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/fs/viewfs/TestViewFileSystemWithTruncate.java:[112,58] local variable hdfFilepath is accessed from within inner class; needs to be declared final [INFO] 1 error {noformat} [~arpitagarwal]/[~brahma]: can you guys take a look ? > truncate will fail when we use viewfilesystem > --------------------------------------------- > > Key: HADOOP-13236 > URL: https://issues.apache.org/jira/browse/HADOOP-13236 > Project: Hadoop Common > Issue Type: Bug > Reporter: Brahma Reddy Battula > Assignee: Brahma Reddy Battula > Fix For: 2.8.0, 2.7.4, 3.0.0-alpha2 > > Attachments: HADOOP-13236-002.patch, HADOOP-13236-003.patch, > HADOOP-13236.patch > > > truncate will fail when use viewFS. > {code} > @Override > public boolean truncate(final Path f, final long newLength) > throws IOException { > InodeTree.ResolveResult<FileSystem> res = > fsState.resolve(getUriPath(f), true); > return res.targetFileSystem.truncate(f, newLength); > } > {code} > *Path should be like below:* > {{return res.targetFileSystem.truncate(f, newLength);}} *should be* > {{return res.targetFileSystem.truncate(res.remainingPath, newLength);}} -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-issues-h...@hadoop.apache.org