We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878fe7b commit e13e9b4Copy full SHA for e13e9b4
src/clusterfuzz/_internal/cron/schedule_fuzz.py
@@ -199,7 +199,7 @@ def schedule_fuzz_tasks() -> bool:
199
project = batch_config.get('project')
200
available_cpus = get_available_cpus(project, regions[0])
201
# TODO(metzman): Remove this as we move from experimental code to production.
202
- available_cpus = min(available_cpus, 40)
+ available_cpus = min(available_cpus, 100)
203
fuzz_tasks = get_fuzz_tasks(available_cpus)
204
if not fuzz_tasks:
205
logs.error('No fuzz tasks found to schedule.')
0 commit comments