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 de17fef commit 3bcfea7Copy full SHA for 3bcfea7
src/clusterfuzz/_internal/cron/schedule_fuzz.py
@@ -204,7 +204,7 @@ def schedule_fuzz_tasks() -> bool:
204
project = batch_config.get('project')
205
available_cpus = get_available_cpus(project, region)
206
# TODO(metzman): Remove this as we move from experimental code to production.
207
- available_cpus = min(available_cpus, 250)
+ available_cpus = min(available_cpus, 1000)
208
fuzz_tasks = get_fuzz_tasks(available_cpus)
209
if not fuzz_tasks:
210
logs.error('No fuzz tasks found to schedule.')
0 commit comments