mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-08 15:04:29 +00:00
This commit is contained in:
parent
bea4be4e82
commit
aa79bcb923
@ -141,7 +141,12 @@ public class IngestionPipelineRepository extends EntityRepository<IngestionPipel
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void postDelete(IngestionPipeline entity) {
|
protected void postDelete(IngestionPipeline entity) {
|
||||||
|
// Delete deployed pipeline in the Pipeline Service Client
|
||||||
pipelineServiceClient.deletePipeline(entity);
|
pipelineServiceClient.deletePipeline(entity);
|
||||||
|
// Clean pipeline status
|
||||||
|
daoCollection
|
||||||
|
.entityExtensionTimeSeriesDao()
|
||||||
|
.delete(entity.getFullyQualifiedName(), PIPELINE_STATUS_EXTENSION);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user