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

(cherry picked from commit 8cc4a67059)
This commit is contained in:
Akira Ajisaka 2016-08-23 17:04:55 +09:00
parent 9faacbec2c
commit 41fe85f868
1 changed files with 4 additions and 6 deletions

View File

@ -263,7 +263,7 @@ private DataInputStream openShuffleUrl(MapHost host,
DataInputStream input = null;
try {
setupConnectionsWithRetry(host, remaining, url);
setupConnectionsWithRetry(url);
if (stopped) {
abortConnect(host, remaining);
} else {
@ -374,9 +374,8 @@ protected void copyFromHost(MapHost host) throws IOException {
}
}
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 @@ private void setupConnectionsWithRetry(MapHost host,
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) {