We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4d26a2 commit 3b780d5Copy full SHA for 3b780d5
vulnerabilities/pipelines/v2_improvers/compute_advisory_content_hash.py
@@ -25,15 +25,12 @@ def steps(cls):
25
return (cls.compute_advisory_content_hash,)
26
27
def compute_advisory_content_hash(self):
28
- """Create ToDos for missing summary, affected and fixed packages."""
+ """Compute Advisory Content Hash for Advisory."""
29
30
advisories = AdvisoryV2.objects.filter(advisory_content_hash__isnull=True)
31
32
advisories_count = advisories.count()
33
34
- self.log(
35
- f"Checking missing summary, affected and fixed packages in {advisories_count} Advisories"
36
- )
37
progress = LoopProgress(
38
total_iterations=advisories_count,
39
logger=self.log,
0 commit comments