1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

Only display notification if there are currently running ingest jobs

This commit is contained in:
Eugene Livis
2015-07-10 15:55:00 -04:00
parent 02fe277622
commit bdc7ca047f

View File

@@ -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),