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 38c4c06 commit bfd9eb6Copy full SHA for bfd9eb6
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 = 10000
+ batch_size = 100
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=10000):
+ for advisory_id in advisories_qs.iterator(chunk_size=100):
56
batch.append(advisory_id)
57
58
if len(batch) >= batch_size:
0 commit comments