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 @@ extends AMRMClientAsync<T> {
|
|||
try {
|
||||
object = responseQueue.take();
|
||||
} catch (InterruptedException ex) {
|
||||
LOG.info("Interrupted while waiting for queue", ex);
|
||||
LOG.debug("Interrupted while waiting for queue", ex);
|
||||
Thread.currentThread().interrupt();
|
||||
continue;
|
||||
}
|
||||
if (object instanceof Throwable) {
|
||||
|
|
Loading…
Reference in New Issue