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/22 14:28:10 UTC

svn commit: r1552988 - /manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/FetchBin.java

Author: kwright
Date: Sun Dec 22 13:28:10 2013
New Revision: 1552988

URL: http://svn.apache.org/r1552988
Log:
Fix fetch hang; part of CONNECTORS-892.

Modified:
    manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/FetchBin.java

Modified: manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/FetchBin.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/FetchBin.java?rev=1552988&r1=1552987&r2=1552988&view=diff
==============================================================================
--- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/FetchBin.java (original)
+++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/throttler/FetchBin.java Sun Dec 22 13:28:10 2013
@@ -157,6 +157,7 @@ public class FetchBin
           if (currentTime > lastFetchTime)
             lastFetchTime = currentTime;
           reserveNextFetch = false;
+          notifyAll();
           return true;
         }
         wait(waitAmt);