mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-26 15:10:05 +00:00
Fix #2414: AirflowPipeline is storing the service in the entity_relationship and in the json column of airflow_pipeline_entity (#2415)
This commit is contained in:
parent
c092b03171
commit
4aa8f9b8e2
@ -96,7 +96,7 @@ public class AirflowPipelineRepository extends EntityRepository<AirflowPipeline>
|
||||
EntityReference service = airflowPipeline.getService();
|
||||
|
||||
// Don't store owner, dashboard, href and tags as JSON. Build it on the fly based on relationships
|
||||
airflowPipeline.withOwner(null).withHref(null);
|
||||
airflowPipeline.withOwner(null).withService(null).withHref(null);
|
||||
|
||||
store(airflowPipeline.getId(), airflowPipeline, update);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user