mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 19:14:55 +00:00
Merge pull request #1439 from APriestman/pipelineShutdown
Prevent shutDown from being called on ingest pipelines that haven't s…
This commit is contained in:
commit
2d4cd6dd69
@ -386,9 +386,11 @@ final class DataSourceIngestJob {
|
||||
// errors are likely redundant.
|
||||
while (!this.fileIngestPipelinesQueue.isEmpty()) {
|
||||
pipeline = this.fileIngestPipelinesQueue.poll();
|
||||
List<IngestModuleError> shutDownErrors = pipeline.shutDown();
|
||||
if (!shutDownErrors.isEmpty()) {
|
||||
logIngestModuleErrors(shutDownErrors);
|
||||
if(pipeline.isRunning()){
|
||||
List<IngestModuleError> shutDownErrors = pipeline.shutDown();
|
||||
if (!shutDownErrors.isEmpty()) {
|
||||
logIngestModuleErrors(shutDownErrors);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -565,7 +567,9 @@ final class DataSourceIngestJob {
|
||||
List<IngestModuleError> errors = new ArrayList<>();
|
||||
while (!this.fileIngestPipelinesQueue.isEmpty()) {
|
||||
FileIngestPipeline pipeline = fileIngestPipelinesQueue.poll();
|
||||
errors.addAll(pipeline.shutDown());
|
||||
if(pipeline.isRunning()){
|
||||
errors.addAll(pipeline.shutDown());
|
||||
}
|
||||
}
|
||||
if (!errors.isEmpty()) {
|
||||
logIngestModuleErrors(errors);
|
||||
|
Loading…
x
Reference in New Issue
Block a user