[
https://issues.apache.org/jira/browse/HADOOP-14462?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16031025#comment-16031025
]
Hongyuan Li commented on HADOOP-14462:
--------------------------------------
OK, got it.
> Hadoop Path class can mis-escape secrets in embedded passwords
> --------------------------------------------------------------
>
> 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]