Merge pull request #3621 from rcordovano/ingest-performance-fix

Make virtual files pass through ingest file filter
This commit is contained in:
Richard Cordovano 2018-03-27 18:50:53 -04:00 committed by GitHub
commit 845bc449fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -414,7 +414,7 @@ final class IngestTasksScheduler {
* applied to the current run of ingest, checks if unallocated space
* should be processed inside call to fileIsMemberOf
*/
if (file.isFile() && task.getIngestJob().getFileIngestFilter().fileIsMemberOf(file) == null) {
if (!file.isDir() && task.getIngestJob().getFileIngestFilter().fileIsMemberOf(file) == null) {
return false;
}