From bdc7ca047f296cb60f2ae361dfe9e2d95e02a8bc Mon Sep 17 00:00:00 2001 From: Eugene Livis Date: Fri, 10 Jul 2015 15:55:00 -0400 Subject: [PATCH] Only display notification if there are currently running ingest jobs --- Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java index c4cd42b93f..3704e3f5a2 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java @@ -339,7 +339,7 @@ public class IngestManager { logger.log(Level.SEVERE, "Service {0} is down! Cancelling all running ingest jobs", serviceName); //NON-NLS // display notification if running interactively - if (isRunningInteractively()){ + if (isIngestRunning() && isRunningInteractively()){ JOptionPane.showMessageDialog(null, NbBundle.getMessage(this.getClass(), "IngestManager.cancellingIngest.msgDlg.text"), NbBundle.getMessage(this.getClass(), "IngestManager.serviceIsDown.msgDlg.text", serviceName),