Skip to content

Commit

Permalink
JENKINS-30934 - remove dubious Thread.sleep(60000)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasgl-orange committed Oct 13, 2015
1 parent 4855568 commit f0ffb21
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -96,12 +96,6 @@ public void reschedule(){
getLastTask().cancel();
}
Timer.get().schedule(getNewInstance(), getRecurrencePeriod(), TimeUnit.MILLISECONDS);

try {
Thread.sleep(60000);
} catch (InterruptedException ex) {
Logger.getLogger(DiskUsageCalculation.class.getName()).log(Level.SEVERE, null, ex);
}
}

public abstract CronTab getCronTab() throws ANTLRException;
Expand Down

0 comments on commit f0ffb21

Please sign in to comment.