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 
<https://github.com/jenkinsci/jenkins/blob/d237acc447c92dce0b658d4afc0a94e36746407d/core/src/main/java/hudson/slaves/SlaveComputer.java#L196>
 
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

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/8a9749c6-57bf-4fdc-b596-5665b82e5487%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to