Skip to content

Commit 6c01445

Browse files
Remove test push
1 parent 8da25b5 commit 6c01445

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/clusterfuzz/_internal/cron/schedule_fuzz.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,20 +188,17 @@ def get_batch_regions(batch_config):
188188

189189
def 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.')

0 commit comments

Comments
 (0)