From fec78894583d0d5cbcddd1c4646789893a728109 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Tue, 18 Feb 2025 10:27:38 +0100 Subject: [PATCH] Update postgres_impl.py --- lightrag/kg/postgres_impl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightrag/kg/postgres_impl.py b/lightrag/kg/postgres_impl.py index eb7fd2a0..35f0ed2e 100644 --- a/lightrag/kg/postgres_impl.py +++ b/lightrag/kg/postgres_impl.py @@ -507,8 +507,8 @@ class PGDocStatusStorage(DocStatusStorage): content_summary=element["content_summary"], content_length=element["content_length"], status=element["status"], - created_at=element["created_at"], - updated_at=element["updated_at"], + created_at=str(element["created_at"]), + updated_at=str(element["updated_at"]), chunks_count=element["chunks_count"], ) for element in result