Author: kwright
Date: Wed Jun 4 18:08:27 2014
New Revision: 1600407
URL: http://svn.apache.org/r1600407
Log:
Fix last missing polling call
Modified:
manifoldcf/branches/CONNECTORS-946/framework/combined-service/src/main/java/org/apache/manifoldcf/combinedservice/IdleCleanupThread.java
manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/java/org/apache/manifoldcf/crawlerui/IdleCleanupThread.java
Modified:
manifoldcf/branches/CONNECTORS-946/framework/combined-service/src/main/java/org/apache/manifoldcf/combinedservice/IdleCleanupThread.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-946/framework/combined-service/src/main/java/org/apache/manifoldcf/combinedservice/IdleCleanupThread.java?rev=1600407&r1=1600406&r2=1600407&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-946/framework/combined-service/src/main/java/org/apache/manifoldcf/combinedservice/IdleCleanupThread.java
(original)
+++
manifoldcf/branches/CONNECTORS-946/framework/combined-service/src/main/java/org/apache/manifoldcf/combinedservice/IdleCleanupThread.java
Wed Jun 4 18:08:27 2014
@@ -56,6 +56,7 @@ public class IdleCleanupThread extends T
IRepositoryConnectorPool repositoryConnectorPool =
RepositoryConnectorPoolFactory.make(threadContext);
IOutputConnectorPool outputConnectorPool =
OutputConnectorPoolFactory.make(threadContext);
+ ITransformationConnectorPool transformationConnectorPool =
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();
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=1600407&r1=1600406&r2=1600407&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:08:27 2014
@@ -56,7 +56,7 @@ public class IdleCleanupThread extends T
IRepositoryConnectorPool repositoryConnectorPool =
RepositoryConnectorPoolFactory.make(threadContext);
IOutputConnectorPool outputConnectorPool =
OutputConnectorPoolFactory.make(threadContext);
- ITransformationConnectorPool outputConnectorPool =
TransformationConnectorPoolFactory.make(threadContext);
+ ITransformationConnectorPool transformationConnectorPool =
TransformationConnectorPoolFactory.make(threadContext);
IAuthorityConnectorPool authorityConnectorPool =
AuthorityConnectorPoolFactory.make(threadContext);
IMappingConnectorPool mappingConnectorPool =
MappingConnectorPoolFactory.make(threadContext);