We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 632638c commit 1e8219fCopy full SHA for 1e8219f
metadata-ingestion/src/datahub/ingestion/source/gc/dataprocess_cleanup.py
@@ -331,8 +331,8 @@ def remove_old_dpis(
331
continue
332
333
if (
334
- "created" not in dpi
335
- or "time" not in dpi["created"]
+ not dpi.get("created")
+ or not dpi["created"].get("time")
336
or dpi["created"]["time"] < retention_time * 1000
337
):
338
future = executor.submit(
0 commit comments