Revert "Disable caching for JarURLConnection to avoid sharing JarFile with other users when loading resource from URL in Configuration class. Contributed by Zhihai Xu"
This reverts commit 7576b4247b
.
This commit is contained in:
parent
6041fc75d8
commit
7c429fbaa9
|
@ -270,10 +270,6 @@ Release 2.8.0 - UNRELEASED
|
||||||
HADOOP-12413. AccessControlList should avoid calling getGroupNames in
|
HADOOP-12413. AccessControlList should avoid calling getGroupNames in
|
||||||
isUserInList with empty groups. (Zhihai Xu via cnauroth)
|
isUserInList with empty groups. (Zhihai Xu via cnauroth)
|
||||||
|
|
||||||
HADOOP-12404. Disable caching for JarURLConnection to avoid sharing
|
|
||||||
JarFile with other users when loading resource from URL in Configuration
|
|
||||||
class. (zxu)
|
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
||||||
|
|
|
@ -34,9 +34,7 @@ import java.io.Reader;
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.lang.ref.WeakReference;
|
import java.lang.ref.WeakReference;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.JarURLConnection;
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.net.URLConnection;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
@ -2469,14 +2467,7 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
|
||||||
if (url == null) {
|
if (url == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
return parse(builder, url.openStream(), url.toString());
|
||||||
URLConnection connection = url.openConnection();
|
|
||||||
if (connection instanceof JarURLConnection) {
|
|
||||||
// Disable caching for JarURLConnection to avoid sharing JarFile
|
|
||||||
// with other users.
|
|
||||||
connection.setUseCaches(false);
|
|
||||||
}
|
|
||||||
return parse(builder, connection.getInputStream(), url.toString());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Document parse(DocumentBuilder builder, InputStream is,
|
private Document parse(DocumentBuilder builder, InputStream is,
|
||||||
|
|
Loading…
Reference in New Issue