From 4190c6e2035af3b2889f6622c31a120d69229536 Mon Sep 17 00:00:00 2001 From: apriestman Date: Wed, 28 Oct 2020 07:57:26 -0400 Subject: [PATCH] Check if ingest is complete after cancellation --- Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java index 5921071e65..8e2f7cf86d 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobPipeline.java @@ -1274,6 +1274,9 @@ final class IngestJobPipeline { } } } + + // If a data source had no tasks in progress it may now be complete. + checkForStageCompleted(); } /**