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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user