Skip to content

Commit

Permalink
Increase scheduled fuzz tasks to 6000 (#4460)
Browse files Browse the repository at this point in the history
Scale up fuzzing on batch
  • Loading branch information
jonathanmetzman committed Dec 16, 2024
1 parent 37480bc commit 0cc9537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clusterfuzz/_internal/cron/schedule_fuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def schedule_fuzz_tasks() -> bool:
# TODO(metzman): Put the CPU-based scheduling in tworkers.
available_cpus = get_available_cpus(project, 'us-east4')
# TODO(metzman): Remove this as we move from experimental code to production.
available_cpus = min(available_cpus, 6000)
available_cpus = min(available_cpus, 12000)
fuzz_tasks = get_fuzz_tasks(available_cpus)
if not fuzz_tasks:
logs.error('No fuzz tasks found to schedule.')
Expand Down

0 comments on commit 0cc9537

Please sign in to comment.