Merge r1536248 from trunk to branch-2 for YARN-1022. Unnecessary INFO logs in AMRMClientAsync (haosdent via bikas)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1536250 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
abddbcd9bf
commit
eab6a16ce6
|
@ -133,6 +133,8 @@ Release 2.2.1 - UNRELEASED
|
||||||
YARN-1330. Fair Scheduler: defaultQueueSchedulingPolicy does not take effect
|
YARN-1330. Fair Scheduler: defaultQueueSchedulingPolicy does not take effect
|
||||||
(Sandy Ryza)
|
(Sandy Ryza)
|
||||||
|
|
||||||
|
YARN-1022. Unnecessary INFO logs in AMRMClientAsync (haosdent via bikas)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -240,7 +240,7 @@ extends AMRMClientAsync<T> {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
LOG.info("Interrupted while waiting to put on response queue", ex);
|
LOG.debug("Interrupted while waiting to put on response queue", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -248,7 +248,7 @@ extends AMRMClientAsync<T> {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(heartbeatIntervalMs.get());
|
Thread.sleep(heartbeatIntervalMs.get());
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
LOG.info("Heartbeater interrupted", ex);
|
LOG.debug("Heartbeater interrupted", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue