We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1bb51c commit f58c1fdCopy full SHA for f58c1fd
api/CHANGELOG.md
@@ -13,6 +13,13 @@ All notable changes to the **Prowler API** are documented in this file.
13
14
---
15
16
+## [1.15.2] (Prowler v5.14.2)
17
+
18
+### Fixed
19
+- Unique constraint violation during compliance overviews task [(#9436)](https://github.com/prowler-cloud/prowler/pull/9436)
20
21
+---
22
23
## [1.15.1] (Prowler v5.14.1)
24
25
### Fixed
api/src/backend/tasks/jobs/scan.py
@@ -370,7 +370,7 @@ def _create_compliance_summaries(
370
if summary_objects:
371
with rls_transaction(tenant_id):
372
ComplianceOverviewSummary.objects.bulk_create(
373
- summary_objects, batch_size=500
+ summary_objects, batch_size=500, ignore_conflicts=True
374
)
375
376
0 commit comments