File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/clusterfuzz/_internal/cron Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -188,20 +188,17 @@ def get_batch_regions(batch_config):
188188
189189def schedule_fuzz_tasks () -> bool :
190190 """Schedules fuzz tasks."""
191- # TODO(metzman): Remove this when we are ready to run on Chrome.
192191 start = time .time ()
193192
194193 batch_config = local_config .BatchConfig ()
195194 regions = get_batch_regions (batch_config )
196195 # TODO(metzman): Make it possible to use multiple regions.
197196 if len (regions ) > 1 :
198- region = 'us-central1'
199- else :
200197 region = regions [0 ]
201198 project = batch_config .get ('project' )
202199 available_cpus = get_available_cpus (project , region )
203200 # TODO(metzman): Remove this as we move from experimental code to production.
204- available_cpus = min (available_cpus , 2500 )
201+ available_cpus = min (available_cpus , 3000 )
205202 fuzz_tasks = get_fuzz_tasks (available_cpus )
206203 if not fuzz_tasks :
207204 logs .error ('No fuzz tasks found to schedule.' )
You can’t perform that action at this time.
0 commit comments