Skip to content

Commit e13e9b4

Browse files
fix
1 parent 878fe7b commit e13e9b4

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
@@ -199,7 +199,7 @@ def schedule_fuzz_tasks() -> bool:
199199
project = batch_config.get('project')
200200
available_cpus = get_available_cpus(project, regions[0])
201201
# TODO(metzman): Remove this as we move from experimental code to production.
202-
available_cpus = min(available_cpus, 40)
202+
available_cpus = min(available_cpus, 100)
203203
fuzz_tasks = get_fuzz_tasks(available_cpus)
204204
if not fuzz_tasks:
205205
logs.error('No fuzz tasks found to schedule.')

0 commit comments

Comments
 (0)