You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by ma...@apache.org on 2014/10/24 21:22:11 UTC

svn commit: r1634123 - in /manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript: connector/src/test/java/org/apache/manifoldcf/crawler/connectors/alfrescowebscript/tests/APISanityHSQLDBIT.java pom.xml

Author: maoo
Date: Fri Oct 24 19:22:11 2014
New Revision: 1634123

URL: http://svn.apache.org/r1634123
Log:
#CONNECTOR-1060 - using alfresco-indexer 0.6.5

Modified:
    manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/connector/src/test/java/org/apache/manifoldcf/crawler/connectors/alfrescowebscript/tests/APISanityHSQLDBIT.java
    manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/pom.xml

Modified: manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/connector/src/test/java/org/apache/manifoldcf/crawler/connectors/alfrescowebscript/tests/APISanityHSQLDBIT.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/connector/src/test/java/org/apache/manifoldcf/crawler/connectors/alfrescowebscript/tests/APISanityHSQLDBIT.java?rev=1634123&r1=1634122&r2=1634123&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/connector/src/test/java/org/apache/manifoldcf/crawler/connectors/alfrescowebscript/tests/APISanityHSQLDBIT.java (original)
+++ manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/connector/src/test/java/org/apache/manifoldcf/crawler/connectors/alfrescowebscript/tests/APISanityHSQLDBIT.java Fri Oct 24 19:22:11 2014
@@ -276,14 +276,14 @@ public class APISanityHSQLDBIT extends B
 
       // Now, start the job, and wait until it completes.
       startJob(jobIDString);
-      waitJobInactive(jobIDString, 12000L);
+      waitJobInactive(jobIDString, 120000L);
 
       // Check to be sure we actually processed the right number of documents.
       // The test data area has 3 documents and one directory, and we have to count the root directory too.
       long count;
       count = getJobDocumentsProcessed(jobIDString);
 
-      if (count != 67)
+      if (count != 66)
         throw new ManifoldCFException("Wrong number of documents processed - expected 67, got "+new Long(count).toString());
     }
     catch (Exception e)

Modified: manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/pom.xml?rev=1634123&r1=1634122&r2=1634123&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/pom.xml (original)
+++ manifoldcf/branches/CONNECTORS-1060/connectors/alfresco-webscript/pom.xml Fri Oct 24 19:22:11 2014
@@ -46,6 +46,7 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+        <alfresco.indexer.version>0.6.5</alfresco.indexer.version>
     </properties>
 
     <repositories>
@@ -164,7 +165,7 @@
                                 <artifactItem>
                                     <artifactId>alfresco-indexer-webscripts-war</artifactId>
                                     <groupId>org.alfresco.consulting.indexer</groupId>
-                                    <version>0.6.4</version>
+                                    <version>${alfresco.indexer.version}</version>
                                     <type>war</type>
                                     <overWrite>false</overWrite>
                                     <destFileName>alfresco.war</destFileName>
@@ -216,7 +217,7 @@
         <dependency>
             <groupId>org.alfresco.consulting.indexer</groupId>
             <artifactId>alfresco-indexer-client</artifactId>
-            <version>0.6.4</version>
+            <version>${alfresco.indexer.version}</version>
         </dependency>
 
         <dependency>