Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
ManifoldCF 1.2
-
None
Description
When crawling a JCIFS repository to ElasticSearch, SharedDriveConnector.java#checkIngest() always returns false. The result of that is, that nothing will be indexed in ElasticSearch.
This seems to happen, since the localFile's extension is 'tmp', rather than the original extension. The line
//SharedDriveConnector.java[1842] isIndexable = activities.checkDocumentIndexable(localFile);
always evaluates 'false'. Adding 'tmp' to the list of the ElasticSearch Connectors 'allowed file extensions' changes that.