Hi all,
I've got several nodes in my Jenkins setup whose computer icons in the node overview don't ever stop flashing.
According to the Code in
SlaveComputer.java it seems that they're shown flashing until the connection has been established / has been launched:
@Override
public String getIcon() {
Future<?> l = lastConnectActivity;
if(l!=null && !l.isDone())
return "computer-flash.gif";
return super.getIcon();
}
What can be the cause here?
Can this be an issue in our node config? Despite the flashing icon I can use the nodes to build jobs on them.
Thanks,
dF