Skip to content

Commit 9eed2e2

Browse files
Increase number of fuzz tasks scheduled at once. (#4424)
1 parent 3a98ff9 commit 9eed2e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/cron/schedule_fuzz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def schedule_fuzz_tasks() -> bool:
201201
project = batch_config.get('project')
202202
available_cpus = get_available_cpus(project, region)
203203
# TODO(metzman): Remove this as we move from experimental code to production.
204-
available_cpus = min(available_cpus, 1000)
204+
available_cpus = min(available_cpus, 2500)
205205
fuzz_tasks = get_fuzz_tasks(available_cpus)
206206
if not fuzz_tasks:
207207
logs.error('No fuzz tasks found to schedule.')

0 commit comments

Comments
 (0)