Skip to content

Commit

Permalink
[FIX JENKINS-17757] IllegalStateException: Timer already cancelled fr…
Browse files Browse the repository at this point in the history
…om NodesCollector.scheduleCollectNow
  • Loading branch information
evernat authored and evernat committed Jul 17, 2013
1 parent 6ea3a1e commit c60ffbd
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -48,7 +48,12 @@ public NodesListener(NodesCollector nodesCollector) {
@Override
public void onOnline(Computer c, TaskListener listener) throws IOException,
InterruptedException {
nodesCollector.scheduleCollectNow();
try {
nodesCollector.scheduleCollectNow();
} catch (final IllegalStateException e) {
// if timer already canceled, do nothing
// [JENKINS-17757] IllegalStateException: Timer already cancelled from NodesCollector.scheduleCollectNow
}
super.onOnline(c, listener);
}

Expand Down

0 comments on commit c60ffbd

Please sign in to comment.