From 8b319b4c921d49c100d8695522eee8a147c75151 Mon Sep 17 00:00:00 2001 From: tankilevitch Date: Wed, 8 Jan 2025 13:43:00 +0200 Subject: [PATCH] remove redundant --- port_ocean/core/integrations/mixins/sync_raw.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/port_ocean/core/integrations/mixins/sync_raw.py b/port_ocean/core/integrations/mixins/sync_raw.py index 5c0ced1684..b40de8e508 100644 --- a/port_ocean/core/integrations/mixins/sync_raw.py +++ b/port_ocean/core/integrations/mixins/sync_raw.py @@ -121,7 +121,6 @@ async def _calculate_raw( parse_all: bool = False, send_raw_data_examples_amount: int = 0, ) -> list[CalculationResult]: - print(f"!!!!!!! raw diff {raw_diff}") return await asyncio.gather( *( self.entity_processor.parse_items( @@ -259,11 +258,9 @@ async def register_raw( ) diffs = list(diffs) - print(f"!!!!!!! {diffs}") errors = sum(errors, []) - print(f"!!!!!!! {errors}") misconfigured_entity_keys = list(misconfigured_entity_keys) - print(f"!!!!!!! {misconfigured_entity_keys}") + if errors: message = f"Failed to register {len(errors)} entities. Skipping delete phase due to incomplete state"