From d97c3431e337337822fdb24c270dc55378c7a542 Mon Sep 17 00:00:00 2001 From: Charlie Groves Date: Tue, 5 Feb 2008 23:04:56 +0000 Subject: [PATCH] Criminy! I left my debugging code in that makes the delay a quarter of what it's set to --- src/java/com/threerings/getdown/launcher/Getdown.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/getdown/launcher/Getdown.java b/src/java/com/threerings/getdown/launcher/Getdown.java index ac2187b..fe4c4b2 100644 --- a/src/java/com/threerings/getdown/launcher/Getdown.java +++ b/src/java/com/threerings/getdown/launcher/Getdown.java @@ -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();