Make virtual files pass through ingest file filter

This commit is contained in:
Richard Cordovano 2018-03-27 18:48:59 -04:00
parent a94ac9d669
commit b3ba926705

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;
}