[jira] [Updated] (HADOOP-8621) FileUtil.symLink fails if spaces in path

2017-10-06 Thread Andras Bokor (JIRA)

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

Andras Bokor updated HADOOP-8621:
-
Resolution: Duplicate
Status: Resolved  (was: Patch Available)

> 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
>Assignee: Andras Bokor
>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 was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org



[jira] [Updated] (HADOOP-8621) FileUtil.symLink fails if spaces in path

2017-07-31 Thread Allen Wittenauer (JIRA)

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

Allen Wittenauer updated HADOOP-8621:
-
Status: Patch Available  (was: Open)

> 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
>Assignee: Andras Bokor
>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 was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org



[jira] [Updated] (HADOOP-8621) FileUtil.symLink fails if spaces in path

2012-07-26 Thread Robert Fuller (JIRA)

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

Robert Fuller updated HADOOP-8621:
--

Attachment: hadoop-8621.txt

Adding patch with unit test and fix.

 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