This commit is contained in:
Eugene Livis 2016-08-19 10:50:40 -04:00
parent 74987bce57
commit 0fbde22ee0

View File

@ -313,6 +313,7 @@ public class CellebritePhysicalReportProcessor implements AutomatedIngestDataSou
@Override @Override
public void process(String deviceId, Path dataSourcePath, DataSourceProcessorProgressMonitor progressMonitor, DataSourceProcessorCallback callBack) { public void process(String deviceId, Path dataSourcePath, DataSourceProcessorProgressMonitor progressMonitor, DataSourceProcessorCallback callBack) {
List<String> dataSourcePathList = Arrays.asList(new String[]{dataSourcePath.toString()}); List<String> dataSourcePathList = Arrays.asList(new String[]{dataSourcePath.toString()});
// in this particular case we don't want to call run() method as it will try to identify and process all ".bin" files in data source folder
addImagesTask = new AddCellebritePhysicalReportTask(deviceId, dataSourcePathList, "", progressMonitor, callBack); addImagesTask = new AddCellebritePhysicalReportTask(deviceId, dataSourcePathList, "", progressMonitor, callBack);
new Thread(addImagesTask).start(); new Thread(addImagesTask).start();
} }