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

Steve Loughran commented on HADOOP-14462:
-----------------------------------------

Don't put secrets in Path URIs, they get logged everywhere. Put them in your 
core-site.xml or similar. Or change your password

We went to a lot of effort in s3 to try and fix the escaping *and address 
logging*, and it turns out to be a losing battle

Afraid I'm going to close this as a wontfix

> In hadoop Path class, it is associated with java,net.URI, sometimes will 
> boring
> -------------------------------------------------------------------------------
>
>                 Key: HADOOP-14462
>                 URL: https://issues.apache.org/jira/browse/HADOOP-14462
>             Project: Hadoop Common
>          Issue Type: Wish
>            Reporter: Hongyuan Li
>
> [[email protected]] [~brahmareddy] 
> method {{new Path(String pathString)}} used java.net.URI  {{public URI(String 
> scheme,String authority, String path, String query, String fragment)}}
>  method, in which %25 may converted to %2525. for example, test like below 
> won't pass.
> {code}
> String uriString = "ftp://aaaa:%25112@nodee1/";;
>  URI uri = new URI(uriString );  
> Path path1 = new Path(uri);
> Path path2 = new Path(uriString);
> assertEquals(path1, path2);
> {code}
> Any good idea to solve this ? 



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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to