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 2014/11/12 01:50:05 UTC

svn commit: r1638668 [2/2] - in /manifoldcf/branches/CONNECTORS-1100-1x: ./ framework/ framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/interfaces/ framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/ framework/pull-ag...

Modified: manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/StartupThread.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/StartupThread.java?rev=1638668&r1=1638667&r2=1638668&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/StartupThread.java (original)
+++ manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/StartupThread.java Wed Nov 12 00:50:04 2014
@@ -138,8 +138,9 @@ public class StartupThread extends Threa
                   jobManager.prepareJobScan(jobID,legalLinkTypes,hopcountMethod,
                     model,jobType == IJobDescription.TYPE_CONTINUOUS,lastSeedingVersion == null,
                     requestMinimum);
-                  ManifoldCF.resetAllDocumentPriorities(threadContext,currentTime,processID);
                   
+                  ManifoldCF.resetAllDocumentPriorities(threadContext,processID);
+
                   if (Logging.threads.isDebugEnabled())
                     Logging.threads.debug("Prepared job "+jobID.toString()+" for execution.");
 

Modified: manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/WorkerThread.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/WorkerThread.java?rev=1638668&r1=1638667&r2=1638668&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/WorkerThread.java (original)
+++ manifoldcf/branches/CONNECTORS-1100-1x/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/WorkerThread.java Wed Nov 12 00:50:04 2014
@@ -1965,7 +1965,7 @@ public class WorkerThread extends Thread
 
         jobManager.addDocuments(processID,
           jobID,legalLinkTypes,docidHashes,docids,db.getParentIdentifierHash(),db.getLinkType(),hopcountMode,
-          dataNames,dataValues,currentTime,priorities,eventNames);
+          dataNames,dataValues,priorities,eventNames);
         
         rt.clearPreloadedValues();
       }