Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,12 @@ public void storeEntities(List<Pipeline> pipelines) {

@Override
protected void entitySpecificCleanup(Pipeline pipeline) {
// When a pipeline is removed , the linege needs to be removed
// Delete pipeline execution history from time series
daoCollection
.entityExtensionTimeSeriesDao()
.delete(pipeline.getFullyQualifiedName(), PIPELINE_STATUS_EXTENSION);

// When a pipeline is removed, the lineage needs to be removed
daoCollection
.relationshipDAO()
.deleteLineageBySourcePipeline(
Expand Down
Loading