From a1326022e5d4d0cfd2cb426b651e1f6bfa375cb8 Mon Sep 17 00:00:00 2001 From: Prowler Bot Date: Thu, 24 Apr 2025 15:23:25 +0200 Subject: [PATCH] fix(nhn): remove unneeded parameter (#7601) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Pedro Martín --- prowler/CHANGELOG.md | 1 + prowler/__main__.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/prowler/CHANGELOG.md b/prowler/CHANGELOG.md index 9512f073d7..808998c2b5 100644 --- a/prowler/CHANGELOG.md +++ b/prowler/CHANGELOG.md @@ -16,6 +16,7 @@ All notable changes to the **Prowler SDK** are documented in this file. - Add the correct values for logger.info inside iam service [(#7526)](https://github.com/prowler-cloud/prowler/pull/7526). - Update S3 bucket naming validation to accept dots [(#7545)](https://github.com/prowler-cloud/prowler/pull/7545). - Handle new FlowLog model properties in Azure [(#7546)](https://github.com/prowler-cloud/prowler/pull/7546). +- Remove invalid parameter `create_file_descriptor` [(#7600)](https://github.com/prowler-cloud/prowler/pull/7600) --- diff --git a/prowler/__main__.py b/prowler/__main__.py index f7e617ebcc..8b6e24c848 100644 --- a/prowler/__main__.py +++ b/prowler/__main__.py @@ -717,7 +717,6 @@ def prowler(): generic_compliance = GenericCompliance( findings=finding_outputs, compliance=bulk_compliance_frameworks[compliance_name], - create_file_descriptor=True, file_path=filename, ) generated_outputs["compliance"].append(generic_compliance)