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 2012/12/13 00:41:24 UTC

svn commit: r1421042 - /manifoldcf/branches/CONNECTORS-578/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java

Author: kwright
Date: Wed Dec 12 23:41:24 2012
New Revision: 1421042

URL: http://svn.apache.org/viewvc?rev=1421042&view=rev
Log:
Fix infinite loops on object fetches.

Modified:
    manifoldcf/branches/CONNECTORS-578/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java

Modified: manifoldcf/branches/CONNECTORS-578/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-578/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java?rev=1421042&r1=1421041&r2=1421042&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-578/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-578/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java Wed Dec 12 23:41:24 2012
@@ -4870,6 +4870,7 @@ public class LivelinkConnector extends o
                 throw (Error)thr;
             }
             userValue = t.getResponse();
+            break;
           }
           catch (InterruptedException e)
           {
@@ -4986,6 +4987,7 @@ public class LivelinkConnector extends o
                 throw (Error)thr;
             }
             versionValue = t.getResponse();
+            break;
           }
           catch (InterruptedException e)
           {
@@ -5398,7 +5400,6 @@ public class LivelinkConnector extends o
             Throwable thr = t.getException();
             if (thr != null)
             {
-		    thr.printStackTrace();
               if (thr instanceof RuntimeException)
                 throw (RuntimeException)thr;
               else if (thr instanceof ServiceInterruption)
@@ -5412,6 +5413,7 @@ public class LivelinkConnector extends o
                 throw (Error)thr;
             }
             objectValue = t.getResponse();
+            break;
           }
           catch (InterruptedException e)
           {