Merge pull request #6764 from rcordovano/7332-ingest-pipeline-refactor-fix

7332 ingest pipeline refactor fix
This commit is contained in:
Richard Cordovano 2021-03-01 20:15:54 -05:00 committed by GitHub
commit e717813db3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -323,6 +323,11 @@ abstract class IngestTaskPipeline<T extends IngestTask> {
* performing the task.
*/
abstract void performTask(IngestJobPipeline ingestJobPipeline, T task) throws IngestModuleException;
@Override
public void shutDown() {
module.shutDown();
}
}