Criminy! I left my debugging code in that makes the delay a quarter of what it's set to

This commit is contained in:
Charlie Groves
2008-02-05 23:04:56 +00:00
parent 94b6c332bf
commit d97c3431e3
@@ -378,7 +378,7 @@ public abstract class Getdown extends Thread
// Store the config modtime before waiting the delay amount of time
long lastConfigModtime = config.lastModified();
Log.info("Waiting " + _delay + " minutes before beginning actual work");
Thread.sleep(_delay * 15 * 1000);
Thread.sleep(_delay * 60 * 1000);
if (lastConfigModtime < config.lastModified()) {
Log.warning("getdown.txt was modified while getdown was waiting");
throw new MultipleGetdownRunning();