[ 
https://issues.apache.org/jira/browse/HADOOP-8621?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13423037#comment-13423037
 ] 

Hudson commented on HADOOP-8621:
--------------------------------

Integrated in Hadoop-Hdfs-trunk #1116 (See 
[https://builds.apache.org/job/Hadoop-Hdfs-trunk/1116/])
    Amend previous commit of HDFS-3626: accidentally included a hunk from 
HADOOP-8621 in svn commit. Reverting that hunk (Revision 1365817)

     Result = FAILURE
todd : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1365817
Files : 
* 
/hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/FileUtil.java

                
> FileUtil.symLink fails if spaces in path
> ----------------------------------------
>
>                 Key: HADOOP-8621
>                 URL: https://issues.apache.org/jira/browse/HADOOP-8621
>             Project: Hadoop Common
>          Issue Type: Bug
>            Reporter: Robert Fuller
>            Priority: Minor
>         Attachments: hadoop-8621.txt, patch.txt
>
>
> the 'ln -s' command fails in the current implementation if there is a space 
> in the path for the target or linkname. A small change resolves the issue.
> String cmd = "ln -s " + target + " " + linkname;
> //Process p = Runtime.getRuntime().exec(cmd, null); //broken
> Process p = Runtime.getRuntime().exec(new 
> String[]{"ln","-s",target,linkname}, null);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to