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:
Daniel Templeton 2017-02-10 09:44:49 -08:00
parent 7b2b6caf12
commit 7c3578ca17
1 changed files with 2 additions and 1 deletions

View File

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