Skip to content

Commit

Permalink
Increase the number of scheduled fuzz tasks (#4419)
Browse files Browse the repository at this point in the history
We want to test this more thoroughly before we transition.
  • Loading branch information
jonathanmetzman authored Nov 21, 2024
1 parent de17fef commit 3bcfea7
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 @@ -204,7 +204,7 @@ def schedule_fuzz_tasks() -> bool:
project = batch_config.get('project')
available_cpus = get_available_cpus(project, region)
# TODO(metzman): Remove this as we move from experimental code to production.
available_cpus = min(available_cpus, 250)
available_cpus = min(available_cpus, 1000)
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 3bcfea7

Please sign in to comment.