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/06/04 20:02:47 UTC

svn commit: r1600401 - /manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/java/org/apache/manifoldcf/crawlerui/IdleCleanupThread.java

Author: kwright
Date: Wed Jun  4 18:02:46 2014
New Revision: 1600401

URL: http://svn.apache.org/r1600401
Log:
Include transformation pool in polling

Modified:
    manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/java/org/apache/manifoldcf/crawlerui/IdleCleanupThread.java

Modified: manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/java/org/apache/manifoldcf/crawlerui/IdleCleanupThread.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/java/org/apache/manifoldcf/crawlerui/IdleCleanupThread.java?rev=1600401&r1=1600400&r2=1600401&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/java/org/apache/manifoldcf/crawlerui/IdleCleanupThread.java (original)
+++ manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/java/org/apache/manifoldcf/crawlerui/IdleCleanupThread.java Wed Jun  4 18:02:46 2014
@@ -56,6 +56,7 @@ public class IdleCleanupThread extends T
       
       IRepositoryConnectorPool repositoryConnectorPool = RepositoryConnectorPoolFactory.make(threadContext);
       IOutputConnectorPool outputConnectorPool = OutputConnectorPoolFactory.make(threadContext);
+      ITransformationConnectorPool outputConnectorPool = TransformationConnectorPoolFactory.make(threadContext);
       IAuthorityConnectorPool authorityConnectorPool = AuthorityConnectorPoolFactory.make(threadContext);
       IMappingConnectorPool mappingConnectorPool = MappingConnectorPoolFactory.make(threadContext);
       
@@ -70,6 +71,7 @@ public class IdleCleanupThread extends T
           // Do the cleanup
           repositoryConnectorPool.pollAllConnectors();
           outputConnectorPool.pollAllConnectors();
+          transformationConnectorPool.pollAllConnectors();
           authorityConnectorPool.pollAllConnectors();
           mappingConnectorPool.pollAllConnectors();