From b4ad08ad818e8533134de27c3d4d9855e2a6905f Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 4 Dec 2003 18:42:40 +0000 Subject: [PATCH] Hell, let's give 'em 10000. We blow through that many distributed object events in 500 milliseconds. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2892 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/util/Invoker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/presents/util/Invoker.java b/src/java/com/threerings/presents/util/Invoker.java index 0fc9b5b1d..761cfc021 100644 --- a/src/java/com/threerings/presents/util/Invoker.java +++ b/src/java/com/threerings/presents/util/Invoker.java @@ -1,5 +1,5 @@ // -// $Id: Invoker.java,v 1.13 2003/12/04 18:41:59 mdb Exp $ +// $Id: Invoker.java,v 1.14 2003/12/04 18:42:40 mdb Exp $ package com.threerings.presents.util; @@ -241,7 +241,7 @@ public class Invoker extends LoopingThread protected boolean checkLoops () { if (_loopCount > MAX_LOOPS) { - Log.warning("Shutdown Unit looped on one thread 1000 times " + + Log.warning("Shutdown Unit looped on one thread 10000 times " + "without finishing, shutting down harshly."); doShutdown(); return true; @@ -276,7 +276,7 @@ public class Invoker extends LoopingThread protected static final int MAX_PASSES = 50; /** The maximum number of loops we allow before just ending things. */ - protected static final int MAX_LOOPS = 1000; + protected static final int MAX_LOOPS = 10000; } /** The invoker's queue of units to be executed. */