diff --git a/Core/src/org/sleuthkit/autopsy/ingest/GeneralIngestConfigurator.java b/Core/src/org/sleuthkit/autopsy/ingest/GeneralIngestConfigurator.java index a9769a5b5b..203e98cbe8 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/GeneralIngestConfigurator.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/GeneralIngestConfigurator.java @@ -197,7 +197,7 @@ public class GeneralIngestConfigurator implements IngestConfigurator { if (!modulesToStart.isEmpty() && contentToIngest != null) { // Queue the ingest process. - manager.execute(modulesToStart, contentToIngest); + manager.scheduleDataSource(modulesToStart, contentToIngest); } } diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java index 671325412d..2c30a8f32e 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java @@ -277,13 +277,13 @@ public class IngestManager { } /** - * Multiple data-sources version of execute() method. Enqueues multiple sources inputs (Content objects) + * Multiple data-sources version of scheduleDataSource() method. Enqueues multiple sources inputs (Content objects) * and associated modules at once * - * @param modules modules to execute on every data source - * @param inputs input data sources to enqueue and execute the ingest modules on + * @param modules modules to scheduleDataSource on every data source + * @param inputs input data sources to enqueue and scheduleDataSource the ingest modules on */ - public void execute(final List modules, final List inputs) { + public void scheduleDataSource(final List modules, final List inputs) { logger.log(Level.INFO, "Will enqueue number of inputs: " + inputs.size() + " to " + modules.size() + " modules."); @@ -310,14 +310,14 @@ public class IngestManager { * not block and can be called multiple times to enqueue more work to * already running background ingest process. * - * @param modules modules to execute on the data source input - * @param input input data source Content objects to execute the ingest modules on + * @param modules modules to scheduleDataSource on the data source input + * @param input input data source Content objects to scheduleDataSource the ingest modules on */ - public void execute(final List modules, final Content input) { + public void scheduleDataSource(final List modules, final Content input) { List inputs = new ArrayList(); inputs.add(input); logger.log(Level.INFO, "Will enqueue input: " + input.getName()); - execute(modules, inputs); + scheduleDataSource(modules, inputs); } /**