Skip to content

Commit 3bcfea7

Browse files
Increase the number of scheduled fuzz tasks (#4419)
We want to test this more thoroughly before we transition.
1 parent de17fef commit 3bcfea7

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
@@ -204,7 +204,7 @@ def schedule_fuzz_tasks() -> bool:
204204
project = batch_config.get('project')
205205
available_cpus = get_available_cpus(project, region)
206206
# TODO(metzman): Remove this as we move from experimental code to production.
207-
available_cpus = min(available_cpus, 250)
207+
available_cpus = min(available_cpus, 1000)
208208
fuzz_tasks = get_fuzz_tasks(available_cpus)
209209
if not fuzz_tasks:
210210
logs.error('No fuzz tasks found to schedule.')

0 commit comments

Comments
 (0)