提交 5c95be34 编写于 作者: K Kohsuke Kawaguchi

don't let a programming error kill this thread

上级 e1317648
......@@ -215,6 +215,8 @@ public abstract class AbstractNodeMonitorDescriptor<T> extends Descriptor<NodeMo
data.put(c,null);
else
data.put(c,monitor(c));
} catch (RuntimeException e) {
LOGGER.log(Level.WARNING, "Failed to monitor "+c.getDisplayName()+" for "+getDisplayName(), e);
} catch (IOException e) {
LOGGER.log(Level.WARNING, "Failed to monitor "+c.getDisplayName()+" for "+getDisplayName(), e);
} catch (InterruptedException e) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册