You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the add_status method of the file "/ingestion/src/airflow_provider_openmetadata/lineage/status.py" the execution_date is converted twice using the function datetime_to_ts:
# Let this fail if we cannot properly extract & cast the start_dateexecution_date=datetime_to_ts(dag_run.execution_date)
operator.log.info(f"Logging pipeline status for execution {execution_date}")
Affected module
Ingestion Framework
Describe the bug
Error: 'int' object has no attribute 'timestamp'
Version:
Additional context
In the add_status method of the file "/ingestion/src/airflow_provider_openmetadata/lineage/status.py" the execution_date is converted twice using the function datetime_to_ts:
I resolved the error by replacing the line:
with
The text was updated successfully, but these errors were encountered: