Brahma Reddy Battula created YARN-3192:
------------------------------------------
Summary: Empty handler for exception:
java.lang.InterruptedException #WebAppProxy.java and #/ResourceManager.java
Key: YARN-3192
URL: https://issues.apache.org/jira/browse/YARN-3192
Project: Hadoop YARN
Issue Type: Bug
Affects Versions: 2.6.0
Reporter: Brahma Reddy Battula
Assignee: Brahma Reddy Battula
The InterruptedException is completely ignored. As a result, any events causing
this interrupt will be lost.
File: org/apache/hadoop/yarn/server/resourcemanager/ResourceManager.java
{code}
try {
event = eventQueue.take();
} catch (InterruptedException e) {
LOG.error("Returning, interrupted : " + e);
return; // TODO: Kill RM.
}
{code}
File: "org/apache/hadoop/yarn/server/webproxy/WebAppProxy.java"
{code}
public void join() {
if(proxyServer != null) {
try {
proxyServer.join();
} catch (InterruptedException e) {
}
}
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)