From 4371a0830b91f4110c76966f0de8a284c32ce57e Mon Sep 17 00:00:00 2001
From: diazjj <jjdiaz@cttc.es>
Date: Fri, 26 Jul 2024 15:04:50 +0200
Subject: [PATCH] Debugging

---
 src/dlt/connector/service/tools/Checkers.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/dlt/connector/service/tools/Checkers.py b/src/dlt/connector/service/tools/Checkers.py
index f628126ec..94a10d409 100644
--- a/src/dlt/connector/service/tools/Checkers.py
+++ b/src/dlt/connector/service/tools/Checkers.py
@@ -19,6 +19,6 @@ def record_exists(record : DltRecord) -> bool:
     exists = exists and (len(record.record_id.domain_uuid.uuid) > 0)
     exists = exists and (record.record_id.type != DLTRECORDTYPE_UNDEFINED)
     exists = exists and (len(record.record_id.record_uuid.uuid) > 0)
-    exists = exists and (record.operation != DLTRECORDOPERATION_UNDEFINED)
-    exists = exists and (len(record.data_json) > 0)
+    #exists = exists and (record.operation != DLTRECORDOPERATION_UNDEFINED)
+    #exists = exists and (len(record.data_json) > 0)
     return exists
-- 
GitLab