提交 891fa1a6 编写于 作者: K Kohsuke Kawaguchi

failure to UDP broadcast shouldn't kill Hudson

上级 4c93e945
......@@ -644,8 +644,12 @@ public final class Hudson extends Node implements ItemGroup<TopLevelItem>, Stapl
} else
tcpSlaveAgentListener = null;
udpBroadcastThread = new UDPBroadcastThread(this);
udpBroadcastThread.start();
try {
udpBroadcastThread = new UDPBroadcastThread(this);
udpBroadcastThread.start();
} catch (IOException e) {
LOGGER.log(Level.WARNING, "Faild to broadcast over UDP",e);
}
dnsMultiCast = new DNSMultiCast(this);
updateComputerList();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册