diff --git a/source/de/anomic/plasma/plasmaCrawlBalancer.java b/source/de/anomic/plasma/plasmaCrawlBalancer.java index f2b64c3b8..aa96ba4d1 100644 --- a/source/de/anomic/plasma/plasmaCrawlBalancer.java +++ b/source/de/anomic/plasma/plasmaCrawlBalancer.java @@ -155,12 +155,12 @@ public class plasmaCrawlBalancer { if (lastAccess != null) { // this is not the first access of the same domain long la = lastAccess.longValue(); - if (System.currentTimeMillis() - la > minimumDelta) { + if (System.currentTimeMillis() - la < minimumDelta) { // force a busy waiting here // in best case, this should never happen if the balancer works propertly // this is only to protect against the worst case, where the crawler could // behave in a DoS-manner - long sleeptime = System.currentTimeMillis() - la - minimumDelta; + long sleeptime = minimumDelta - (System.currentTimeMillis() - la); if (sleeptime > 0) try {this.wait(sleeptime);} catch (InterruptedException e) {} } }