From bd099beb99e2cf72ef54fe1abcc75bba443427d2 Mon Sep 17 00:00:00 2001 From: Josema Camacho Date: Wed, 14 Jan 2026 15:54:14 +0100 Subject: [PATCH] Remove unused scan task call --- api/src/backend/tasks/tasks.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/api/src/backend/tasks/tasks.py b/api/src/backend/tasks/tasks.py index 0cd8ab9c82..0221996e1b 100644 --- a/api/src/backend/tasks/tasks.py +++ b/api/src/backend/tasks/tasks.py @@ -164,11 +164,6 @@ def perform_scan_task( Returns: dict: The result of the scan execution, typically including the status and results of the performed checks. """ - perform_attack_paths_scan_task.apply_async( - kwargs={"tenant_id": tenant_id, "scan_id": scan_id} - ) - return # TODO: Delete this block - result = perform_prowler_scan( tenant_id=tenant_id, scan_id=scan_id,