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,