From f71a03eae13933e158df328d5fc73dc5972f0432 Mon Sep 17 00:00:00 2001 From: Jonathan Metzman Date: Mon, 29 Jan 2024 10:41:18 -0500 Subject: [PATCH] [rearchitecture] Make more utasks run on batch. Make analyze (again), minimize, and regression run on batch. --- src/clusterfuzz/_internal/bot/tasks/task_types.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/clusterfuzz/_internal/bot/tasks/task_types.py b/src/clusterfuzz/_internal/bot/tasks/task_types.py index e09adff100..7e25693275 100644 --- a/src/clusterfuzz/_internal/bot/tasks/task_types.py +++ b/src/clusterfuzz/_internal/bot/tasks/task_types.py @@ -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,