From 46534d4dccfc0342fbcf43a289da3bc2c6fc3a57 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Wed, 28 Jul 2021 12:24:55 -0400 Subject: [PATCH] 7683 make one ingest job per data source --- .../src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java index c64b63f388..3ba163a090 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java @@ -1551,12 +1551,12 @@ final class IngestJobPipeline { tasksSnapshot = taskScheduler.getTasksSnapshotForJob(getIngestJobId()); } - return new Snapshot(dataSource.getName(), getIngestJobId(), createTime, + return new Snapshot(dataSource.getName(), + getIngestJobId(), createTime, getCurrentDataSourceIngestModule(), fileIngestRunning, fileIngestStartTime, cancelled, cancellationReason, cancelledDataSourceIngestModules, - processedFilesCount, estimatedFilesToProcessCount, - snapShotTime, tasksSnapshot); + processedFilesCount, estimatedFilesToProcessCount, snapShotTime, tasksSnapshot); } /**