You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2013/12/16 19:13:25 UTC

svn commit: r1551295 - /manifoldcf/branches/CONNECTORS-829/framework/core/src/test/java/org/apache/manifoldcf/core/throttler/TestThrottler.java

Author: kwright
Date: Mon Dec 16 18:13:25 2013
New Revision: 1551295

URL: http://svn.apache.org/r1551295
Log:
Make test run 10x faster, so we can see what goes wrong faster

Modified:
    manifoldcf/branches/CONNECTORS-829/framework/core/src/test/java/org/apache/manifoldcf/core/throttler/TestThrottler.java

Modified: manifoldcf/branches/CONNECTORS-829/framework/core/src/test/java/org/apache/manifoldcf/core/throttler/TestThrottler.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-829/framework/core/src/test/java/org/apache/manifoldcf/core/throttler/TestThrottler.java?rev=1551295&r1=1551294&r2=1551295&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-829/framework/core/src/test/java/org/apache/manifoldcf/core/throttler/TestThrottler.java (original)
+++ manifoldcf/branches/CONNECTORS-829/framework/core/src/test/java/org/apache/manifoldcf/core/throttler/TestThrottler.java Mon Dec 16 18:13:25 2013
@@ -208,6 +208,7 @@ public class TestThrottler extends org.a
       }
       catch (Exception e)
       {
+        e.printStackTrace();
         exception = e;
       }
     }
@@ -257,9 +258,9 @@ public class TestThrottler extends org.a
     public double getMinimumMillisecondsPerByte(String binName)
     {
       if (binName.equals("B"))
-        return 10.0;
+        return 1.0;
       if (binName.equals("C"))
-        return 15.0;
+        return 1.5;
       return 0.0;
     }