YARN-6166. Unnecessary INFO logs in AMRMClientAsyncImpl$CallbackHandlerThread.run (Contributed by Grant Whiteheart via Daniel Templeton)
(cherry picked from commit 1238fa71f8
)
This commit is contained in:
parent
7b2b6caf12
commit
7c3578ca17
|
@ -310,7 +310,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