YARN-6166. Unnecessary INFO logs in AMRMClientAsyncImpl$CallbackHandlerThread.run (Contributed by Grant Whiteheart via Daniel Templeton)

This commit is contained in:
Daniel Templeton 2017-02-10 09:44:49 -08:00
parent 3a0a0a485a
commit 1238fa71f8
1 changed files with 2 additions and 1 deletions

View File

@ -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) {