Skip to content

Commit

Permalink
fix(ingest/gc): do not cleanup empty job/flow (#12013)
Browse files Browse the repository at this point in the history
  • Loading branch information
anshbansal authored Dec 3, 2024
1 parent 5d7298e commit db7e51b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit db7e51b

Please sign in to comment.