Author: kwright
Date: Tue Aug 26 21:06:25 2014
New Revision: 1620735

URL: http://svn.apache.org/r1620735
Log:
Pull up fix for CONNECTORS-1016 from trunk.

Modified:
    manifoldcf/branches/dev_1x/   (props changed)
    manifoldcf/branches/dev_1x/CHANGES.txt
    
manifoldcf/branches/dev_1x/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java

Propchange: manifoldcf/branches/dev_1x/
------------------------------------------------------------------------------
  Merged /manifoldcf/trunk:r1620703

Modified: manifoldcf/branches/dev_1x/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/dev_1x/CHANGES.txt?rev=1620735&r1=1620734&r2=1620735&view=diff
==============================================================================
--- manifoldcf/branches/dev_1x/CHANGES.txt (original)
+++ manifoldcf/branches/dev_1x/CHANGES.txt Tue Aug 26 21:06:25 2014
@@ -3,6 +3,9 @@ $Id$
 
 ======================= 1.8-dev =====================
 
+CONNECTORS-1016: Recognize non-existent user.
+(David Morana, Karl Wright)
+
 CONNECTORS-949: Upgrade OpenCMIS to latest version to see if it
 fixes join queries.
 (Karl Wright)

Modified: 
manifoldcf/branches/dev_1x/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/dev_1x/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java?rev=1620735&r1=1620734&r2=1620735&view=diff
==============================================================================
--- 
manifoldcf/branches/dev_1x/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java
 (original)
+++ 
manifoldcf/branches/dev_1x/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java
 Tue Aug 26 21:06:25 2014
@@ -6243,8 +6243,8 @@ public class LivelinkConnector extends o
           Logging.connectors.debug("Livelink: User status retrieved for 
"+Integer.toString(user)+": status="+Integer.toString(status));
         }
 
-        // Treat both 103101 and 103102 as 'object not found'.
-        if (status == 103101 || status == 103102)
+        // Treat both 103101 and 103102 as 'object not found'. 401101 is 'user 
not found'.
+        if (status == 103101 || status == 103102 || status == 401101)
           return;
 
         // This error means we don't have permission to get the object's 
status, apparently


Reply via email to