MAPREDUCE-6587. Remove unused params in connection-related methods of Fetcher. Contributed by Yiqun Lin.

This commit is contained in:
Akira Ajisaka 2016-08-23 17:04:55 +09:00
parent c49333becf
commit 8cc4a67059
1 changed files with 4 additions and 6 deletions

View File

@ -263,7 +263,7 @@ class Fetcher<K,V> extends Thread {
DataInputStream input = null;
try {
setupConnectionsWithRetry(host, remaining, url);
setupConnectionsWithRetry(url);
if (stopped) {
abortConnect(host, remaining);
} else {
@ -374,9 +374,8 @@ class Fetcher<K,V> extends Thread {
}
}
private void setupConnectionsWithRetry(MapHost host,
Set<TaskAttemptID> remaining, URL url) throws IOException {
openConnectionWithRetry(host, remaining, url);
private void setupConnectionsWithRetry(URL url) throws IOException {
openConnectionWithRetry(url);
if (stopped) {
return;
}
@ -396,8 +395,7 @@ class Fetcher<K,V> extends Thread {
verifyConnection(url, msgToEncode, encHash);
}
private void openConnectionWithRetry(MapHost host,
Set<TaskAttemptID> remaining, URL url) throws IOException {
private void openConnectionWithRetry(URL url) throws IOException {
long startTime = Time.monotonicNow();
boolean shouldWait = true;
while (shouldWait) {