Skip to content

Commit

Permalink
[rearchitecture] Make more utasks run on batch.
Browse files Browse the repository at this point in the history
Make analyze (again), minimize, and regression run on batch.
  • Loading branch information
jonathanmetzman committed Jan 29, 2024
1 parent 3695e04 commit f71a03e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/clusterfuzz/_internal/bot/tasks/task_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,14 +175,14 @@ def execute(self, task_argument, job_type, uworker_env):


COMMAND_TYPES = {
'analyze': UTaskLocalExecutor,
'analyze': UTask,
'blame': TrustedTask,
'corpus_pruning': UTaskLocalExecutor,
'fuzz': UTaskLocalExecutor,
'impact': TrustedTask,
'minimize': UTaskLocalExecutor,
'minimize': UTask,
'progression': UTask,
'regression': UTaskLocalExecutor,
'regression': UTask,
'symbolize': UTask,
'unpack': TrustedTask,
'postprocess': PostprocessTask,
Expand Down

0 comments on commit f71a03e

Please sign in to comment.