From 87f3e0a138b71a136ca1c3f857a836caa885aef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Mart=C3=ADn?= Date: Thu, 24 Apr 2025 13:21:52 +0200 Subject: [PATCH] fix(nhn): remove unneeded parameter (#7600) --- 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 1bb4df58ab..ccdfc5abc8 100644 --- a/prowler/CHANGELOG.md +++ b/prowler/CHANGELOG.md @@ -36,6 +36,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 3bacaf291f..13b430e764 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)