HADOOP-14910. Upgrade netty-all jar to latest 4.0.x.Final. Contributed by Vinayakumar B.

(cherry picked from commit f29e55bf5e)
This commit is contained in:
Jitendra Pandey 2017-10-10 11:00:07 -07:00 committed by Masatake Iwasaki
parent 7c838bf6ed
commit 43c6c54b8c
2 changed files with 2 additions and 3 deletions

View File

@ -58,8 +58,7 @@ class ParameterParser {
private final Map<String, List<String>> params; private final Map<String, List<String>> params;
ParameterParser(QueryStringDecoder decoder, Configuration conf) { ParameterParser(QueryStringDecoder decoder, Configuration conf) {
this.path = decodeComponent(decoder.path().substring(WEBHDFS_PREFIX_LENGTH), this.path = decoder.path().substring(WEBHDFS_PREFIX_LENGTH);
StandardCharsets.UTF_8);
this.params = decoder.parameters(); this.params = decoder.parameters();
this.conf = conf; this.conf = conf;
} }

View File

@ -716,7 +716,7 @@
<dependency> <dependency>
<groupId>io.netty</groupId> <groupId>io.netty</groupId>
<artifactId>netty-all</artifactId> <artifactId>netty-all</artifactId>
<version>4.0.23.Final</version> <version>4.0.52.Final</version>
</dependency> </dependency>
<dependency> <dependency>