From c6b9c12f2ea427775b3077e03e46687419d474d6 Mon Sep 17 00:00:00 2001 From: Viktor Poltorak Date: Thu, 5 Feb 2026 12:32:37 +0100 Subject: [PATCH 1/3] Remove debug logs of imported IDs --- Packs/Orca/Integrations/Orca/Orca.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Packs/Orca/Integrations/Orca/Orca.py b/Packs/Orca/Integrations/Orca/Orca.py index 2fe9710ce85e..fbbd4b4af8f6 100644 --- a/Packs/Orca/Integrations/Orca/Orca.py +++ b/Packs/Orca/Integrations/Orca/Orca.py @@ -338,10 +338,6 @@ def fetch_incidents( ids = [item.get("name") for item in incidents] demisto.info(f"fetch-incidents {ids=}") - if "imported_ids" not in last_run: - last_run["imported_ids"] = [] - last_run["imported_ids"].extend(ids) - next_run["imported_ids"] = last_run["imported_ids"] return next_run, incidents From 43b3fa8b10d1f52fdb1040e2fb6b1efa72e2c301 Mon Sep 17 00:00:00 2001 From: Viktor Poltorak Date: Thu, 5 Feb 2026 12:37:59 +0100 Subject: [PATCH 2/3] Remove debug logs of imported IDs --- Packs/Orca/ReleaseNotes/3_0_2.md | 6 ++++++ Packs/Orca/pack_metadata.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 Packs/Orca/ReleaseNotes/3_0_2.md diff --git a/Packs/Orca/ReleaseNotes/3_0_2.md b/Packs/Orca/ReleaseNotes/3_0_2.md new file mode 100644 index 000000000000..ab9eddc5eb85 --- /dev/null +++ b/Packs/Orca/ReleaseNotes/3_0_2.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Orca + +- Remove log of imported IDs. diff --git a/Packs/Orca/pack_metadata.json b/Packs/Orca/pack_metadata.json index 4b891a34c8e7..4b69deca4a2c 100644 --- a/Packs/Orca/pack_metadata.json +++ b/Packs/Orca/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Orca", "description": "Integrate with Orca security for bidirectional incident management and fetching of asset information. \n", "support": "partner", - "currentVersion": "3.0.1", + "currentVersion": "3.0.2", "author": "Orca Security", "url": "https://orca.security/", "email": "support@orca.security", From 437b2afbc70ceedd401122d6cc18e65e92780503 Mon Sep 17 00:00:00 2001 From: Viktor Poltorak Date: Thu, 5 Feb 2026 15:50:04 +0100 Subject: [PATCH 3/3] Remove the logic for storing imported_ids in the last_run context. --- Packs/Orca/ReleaseNotes/3_0_2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packs/Orca/ReleaseNotes/3_0_2.md b/Packs/Orca/ReleaseNotes/3_0_2.md index ab9eddc5eb85..167f22a41999 100644 --- a/Packs/Orca/ReleaseNotes/3_0_2.md +++ b/Packs/Orca/ReleaseNotes/3_0_2.md @@ -3,4 +3,4 @@ ##### Orca -- Remove log of imported IDs. +- Remove the logic for storing imported_ids in the last_run context.