From c80d81675f324c90f14dc52a45a33eb142df87d2 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 29 Nov 2021 16:58:46 -0500 Subject: [PATCH] 8202 ingest prog bars on EDT; job cancel off EDT --- Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java | 2 +- Core/src/org/sleuthkit/autopsy/ingest/IngestJobInputStream.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java index a508110b99..350096d626 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJob.java @@ -170,7 +170,7 @@ public final class IngestJob { * Starts data source level analysis for this job if it is running in * streaming ingest mode. */ - void processStreamingIngestDataSource() { + void addStreamedDataSource() { if (ingestMode == Mode.STREAMING) { if (ingestModuleExecutor != null) { ingestModuleExecutor.addStreamedDataSource(); diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobInputStream.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobInputStream.java index 2d00727858..fe43bb12b3 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestJobInputStream.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestJobInputStream.java @@ -67,7 +67,7 @@ class IngestJobInputStream implements IngestStream { @Override public synchronized void close() { closed = true; - ingestJob.processStreamingIngestDataSource(); + ingestJob.addStreamedDataSource(); } @Override