YARN-6166. Unnecessary INFO logs in AMRMClientAsyncImpl$CallbackHandlerThread.run (Contributed by Grant Whiteheart via Daniel Templeton)
This commit is contained in:
parent
3a0a0a485a
commit
1238fa71f8
@ -313,7 +313,8 @@ public void run() {
|
|||||||
try {
|
try {
|
||||||
object = responseQueue.take();
|
object = responseQueue.take();
|
||||||
} catch (InterruptedException ex) {
|
} catch (InterruptedException ex) {
|
||||||
LOG.info("Interrupted while waiting for queue", ex);
|
LOG.debug("Interrupted while waiting for queue", ex);
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (object instanceof Throwable) {
|
if (object instanceof Throwable) {
|
||||||
|
Loading…
Reference in New Issue
Block a user