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 85413c1 commit 38c4c06Copy full SHA for 38c4c06
1 file changed
vulnerabilities/pipelines/v2_improvers/mark_unfurl_version_range.py
@@ -45,14 +45,14 @@ def mark_all_impacts_unfurled(self):
45
impacted_packages=impacted_packages
46
)
47
48
- batch_size = 1000
+ batch_size = 10000
49
batch = []
50
51
successful_qs = latest_advisories_with_all_impacts_unfurled_successfully(
52
impacted_packages=impacted_packages,
53
54
55
- for advisory_id in advisories_qs.iterator(chunk_size=1000):
+ for advisory_id in advisories_qs.iterator(chunk_size=10000):
56
batch.append(advisory_id)
57
58
if len(batch) >= batch_size:
0 commit comments