HDFS-16068. WebHdfsFileSystem has a possible connection leak in connection with HttpFS (#3104)
This commit is contained in:
parent
c1bf3cb0da
commit
839fcf7682
|
@ -2502,10 +2502,12 @@ public class WebHdfsFileSystem extends FileSystem
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
void closeInputStream(RunnerState rs) throws IOException {
|
void closeInputStream(RunnerState rs) throws IOException {
|
||||||
if (in != null) {
|
if (in != null) {
|
||||||
IOUtils.close(cachedConnection);
|
|
||||||
in = null;
|
in = null;
|
||||||
}
|
}
|
||||||
|
if (cachedConnection != null) {
|
||||||
|
IOUtils.close(cachedConnection);
|
||||||
cachedConnection = null;
|
cachedConnection = null;
|
||||||
|
}
|
||||||
runnerState = rs;
|
runnerState = rs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue