From db7e51bf10b20a28d5c70366f32517688e7de167 Mon Sep 17 00:00:00 2001 From: Aseem Bansal Date: Tue, 3 Dec 2024 19:23:10 +0530 Subject: [PATCH] fix(ingest/gc): do not cleanup empty job/flow (#12013) --- .../src/datahub/ingestion/source/gc/dataprocess_cleanup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/gc/dataprocess_cleanup.py b/metadata-ingestion/src/datahub/ingestion/source/gc/dataprocess_cleanup.py index 2d042c7ea68ec7..90641b7059ca40 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/gc/dataprocess_cleanup.py +++ b/metadata-ingestion/src/datahub/ingestion/source/gc/dataprocess_cleanup.py @@ -114,11 +114,11 @@ class DataProcessCleanupConfig(ConfigModel): ) delete_empty_data_jobs: bool = Field( - True, description="Whether to delete Data Jobs without runs" + False, description="Whether to delete Data Jobs without runs" ) delete_empty_data_flows: bool = Field( - True, description="Whether to delete Data Flows without runs" + False, description="Whether to delete Data Flows without runs" ) hard_delete_entities: bool = Field(