From 312b5848366e64c46e66dc2ad00f388840c9301b Mon Sep 17 00:00:00 2001 From: Aldwyn Cabarrubias Date: Mon, 23 Sep 2024 17:20:48 +0800 Subject: [PATCH] Change time format for the created_at of the DBT cloud pipeline status (#17916) Co-authored-by: Suman Maharana --- .../src/metadata/ingestion/source/pipeline/dbtcloud/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/ingestion/source/pipeline/dbtcloud/metadata.py b/ingestion/src/metadata/ingestion/source/pipeline/dbtcloud/metadata.py index 846942d110b..f0df49e3123 100644 --- a/ingestion/src/metadata/ingestion/source/pipeline/dbtcloud/metadata.py +++ b/ingestion/src/metadata/ingestion/source/pipeline/dbtcloud/metadata.py @@ -314,7 +314,7 @@ class DbtcloudSource(PipelineServiceSource): timestamp=Timestamp( datetime_to_ts( datetime.strptime( - pipeline_details.created_at, "%Y-%m-%dT%H:%M:%S.%f%z" + pipeline_details.created_at, "%Y-%m-%d %H:%M:%S.%f%z" ) if pipeline_details.created_at else None