Author: kwright
Date: Mon Aug 24 13:24:07 2020
New Revision: 1881139

URL: http://svn.apache.org/viewvc?rev=1881139&view=rev
Log:
Pull up fix to not abort when file in use doesn't resolve

Modified:
    manifoldcf/branches/release-2.17-branch/   (props changed)
    
manifoldcf/branches/release-2.17-branch/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java

Propchange: manifoldcf/branches/release-2.17-branch/
------------------------------------------------------------------------------
  Merged /manifoldcf/trunk:r1881138

Modified: 
manifoldcf/branches/release-2.17-branch/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/release-2.17-branch/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java?rev=1881139&r1=1881138&r2=1881139&view=diff
==============================================================================
--- 
manifoldcf/branches/release-2.17-branch/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java
 (original)
+++ 
manifoldcf/branches/release-2.17-branch/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java
 Mon Aug 24 13:24:07 2020
@@ -1349,7 +1349,7 @@ public class SharedDriveConnector extend
       Logging.connectors.warn("JCIFS: 'File in Use' response when "+activity+" 
for "+documentIdentifier+": retrying...",se);
       // 'File in Use' skip the document and keep going
       throw new ServiceInterruption("Timeout or other service interruption: 
"+se.getMessage(),se,currentTime + 300000L,
-        currentTime + 3 * 60 * 60000L,-1,true);
+        currentTime + 3 * 60 * 60000L,-1,false);
     }
     else if (se.getMessage().indexOf("cannot find") != -1 || 
se.getMessage().indexOf("cannot be found") != -1)
     {


Reply via email to